MLflow Model Writer Module#
This module uploads trained models to the MLflow server.
Configurable Parameters#
Parameter |
Type |
Description |
Example Value |
Default Value |
---|---|---|---|---|
|
string |
Conda environment for the model |
|
|
|
dictionary |
Permissions for the model |
Refer Below |
|
|
string |
Formatter for the experiment name |
|
|
|
string |
Formatter for the model name |
|
|
|
string |
Name of the timestamp column |
|
|
databricks_permissions
#
Key |
Type |
Description |
Example Value |
Default Value |
---|---|---|---|---|
|
array |
List of users with read permissions |
|
|
|
array |
List of users with write permissions |
|
|
Example JSON Configuration#
{
"model_name_formatter": "model_name_{timestamp}",
"experiment_name_formatter": "experiment_name_{timestamp}",
"conda_env": "path/to/conda_env.yml",
"timestamp_column_name": "timestamp",
"databricks_permissions": {
"read": ["read_user1", "read_user2"],
"write": ["write_user1", "write_user2"]
}
}