Last active
July 14, 2020 19:56
-
-
Save awaiskaleem/7630164b32d4264999c42143248f78f1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def create_experiment(proj_id,project_description): | |
for i in [1]: | |
try: | |
mlflow.create_experiment(proj_id) | |
except: | |
continue | |
client.set_experiment_tag(mlflow.get_experiment_by_name(proj_id).experiment_id | |
,"mlflow.note.content" | |
,project_description) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment