Module markov.data_models.common
Classes
class MKVTestResponse (return_code: str, message: str | None = '')
-
MKVTestResponse(return_code: str, message: Optional[str] = '')
Ancestors
Static methods
def from_dict(kvs: dict | list | str | int | float | bool | None, *, infer_missing=False) ‑> ~A
def from_json(s: str | bytes | bytearray,
*,
parse_float=None,
parse_int=None,
parse_constant=None,
infer_missing=False,
**kw) ‑> ~Adef schema(*,
infer_missing: bool = False,
only=None,
exclude=(),
many: bool = False,
context=None,
load_only=(),
dump_only=(),
partial: bool = False,
unknown=None) ‑> dataclasses_json.mm.SchemaF[~A]
Instance variables
var message : str | None
var return_code : str
Methods
def to_dict(self, encode_json=False) ‑> Dict[str, dict | list | str | int | float | bool | None]
def to_json(self,
*,
skipkeys: bool = False,
ensure_ascii: bool = True,
check_circular: bool = True,
allow_nan: bool = True,
indent: int | str | None = None,
separators: Tuple[str, str] | None = None,
default: Callable | None = None,
sort_keys: bool = False,
**kw) ‑> str
class NoDataResponse (return_code: str, message: str | None = '')
-
NoDataResponse(return_code: str, message: Optional[str] = '')
Subclasses
- MKVTestResponse
- AddExperimentHyperParametersResponse
- ExperimentBatchResponse
- SendExperimentSummaryResponse
- StopRecordingResponse
- UpsertExperimentPackageRequirementsResponse
- AddExperimentToModelResponse
- AddMetadataToModelResponse
- GetModelsByMetadataResponse
- LinkModelToRegistryResponse
- StartModelConceptDriftMonitorResponse
- StopModelConceptDriftMonitorResponse
- UpdateModelClassResponse
- UpdateModelConceptDriftMonitorResponse
- UpdateModelStageInRegistryResponse
Static methods
def from_dict(kvs: dict | list | str | int | float | bool | None, *, infer_missing=False) ‑> ~A
def from_json(s: str | bytes | bytearray,
*,
parse_float=None,
parse_int=None,
parse_constant=None,
infer_missing=False,
**kw) ‑> ~Adef schema(*,
infer_missing: bool = False,
only=None,
exclude=(),
many: bool = False,
context=None,
load_only=(),
dump_only=(),
partial: bool = False,
unknown=None) ‑> dataclasses_json.mm.SchemaF[~A]
Instance variables
var message : str | None
var return_code : str
Methods
def already_existing(self)
def get_dict(self) ‑> Dict
def get_json(self) ‑> str
def missing_value(self)
def ok(self)
def to_dict(self, encode_json=False) ‑> Dict[str, dict | list | str | int | float | bool | None]
def to_json(self,
*,
skipkeys: bool = False,
ensure_ascii: bool = True,
check_circular: bool = True,
allow_nan: bool = True,
indent: int | str | None = None,
separators: Tuple[str, str] | None = None,
default: Callable | None = None,
sort_keys: bool = False,
**kw) ‑> str