Experiment API
- pydantic model mlopus.mlflow.ExpApi[source]
Bases:
Experiment
,EntityApi
Experiment metadata with MLflow API handle.
- field id: str [Required]
Experiment ID in the pattern [w-]+
- field name: str [Required]
Experiment Name.
- field tags: Dict[str, Any] [Required]
Nested tags dict with JSON-serializable leaf-values and keys in the pattern: [w-/]+
- class Config
Bases:
object
Pydantic class config.
- create_run(name=None, tags=None, repo=None, parent=None)[source]
Declare a new run in this experiment to be used later.
- find_runs(query=None, sorting=None)[source]
Search runs belonging to this experiment with query in MongoDB query language.
- set_tags(tags)[source]
Set tags on this experiment.
- Parameters:
tags¶ (
Mapping
) – Seeschema.Experiment.tags
.- Return type:
- start_run(name=None, tags=None, repo=None, parent=None)[source]
Start a new run in this experiment.
- update()
Use API to get latest data for this entity and update this entity in place.
- Return type:
EntityApi
- property url: str
This experiment’s URL.