Created
January 12, 2021 00:59
-
-
Save amogkam/119475a0b6a3b4ead674af33466a69cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ray.tune.integration.mlflow import MLflowLoggerCallback | |
tune.run( | |
train_fn, | |
config={ | |
# define search space here | |
"parameter_1": tune.choice([1, 2, 3]), | |
"parameter_2": tune.choice([4, 5, 6]), | |
}, | |
callbacks=[MLflowLoggerCallback( | |
experiment_name="experiment1", | |
save_artifact=True)]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment