41
41
from comet_ml .exceptions import CometRestApiException
42
42
from comet_ml .offline import upload_single_offline_experiment
43
43
from mlflow .entities .run_tag import RunTag
44
- from mlflow .entities .view_type import ViewType
45
44
from mlflow .tracking import _get_store
46
45
from mlflow .tracking ._model_registry .utils import _get_store as get_model_registry_store
47
46
from mlflow .tracking .registry import UnsupportedModelRegistryStoreURIException
48
47
from tabulate import tabulate
49
48
from tqdm import tqdm
50
49
50
+ from .compat import (
51
+ get_artifact_repository ,
52
+ get_mlflow_model_name ,
53
+ get_mlflow_run_id ,
54
+ search_mlflow_store_experiments ,
55
+ search_mlflow_store_runs ,
56
+ )
51
57
from .file_writer import JsonLinesFile
52
58
from .utils import (
53
59
get_comet_project_name ,
65
71
pass
66
72
67
73
68
- try :
69
- # MLFLOW version 1.4.0
70
- from mlflow .store .artifact .artifact_repository_registry import (
71
- get_artifact_repository ,
72
- )
73
- except ImportError :
74
- # MLFLOW version < 1.4.0
75
- from mlflow .store .artifact_repository_registry import get_artifact_repository
76
-
77
74
logging .basicConfig (level = logging .INFO , format = "%(message)s" )
78
75
LOGGER = logging .getLogger ()
79
76
77
+
80
78
# Install a global exception hook
81
79
def except_hook (exc_type , exc_value , exc_traceback ):
82
80
Reporting .report (
@@ -137,8 +135,7 @@ def __init__(
137
135
except UnsupportedModelRegistryStoreURIException :
138
136
self .model_registry_store = None
139
137
140
- # Most of list_experiments returns a list anyway
141
- self .mlflow_experiments = list (self .store .list_experiments ())
138
+ self .mlflow_experiments = search_mlflow_store_experiments (self .store )
142
139
self .len_experiments = len (self .mlflow_experiments ) # We start counting at 0
143
140
144
141
self .summary = {
@@ -239,22 +236,28 @@ def prepare(self):
239
236
240
237
LOGGER .info ("" )
241
238
LOGGER .info (
242
- "If you need support, you can contact us at http://chat.comet.ml/ or https://comet.ml/docs/quick-start/#getting-support"
239
+ """If you need support, you can contact us at http://chat.comet.ml/"""
240
+ """ or https://comet.ml/docs/quick-start/#getting-support"""
243
241
)
244
242
LOGGER .info ("" )
245
243
246
244
def prepare_mlflow_exp (
247
- self , exp ,
245
+ self ,
246
+ exp ,
248
247
):
249
- runs_info = self .store . list_run_infos ( exp . experiment_id , ViewType . ALL )
248
+ runs_info = search_mlflow_store_runs ( self .store , exp . experiment_id )
250
249
len_runs = len (runs_info )
251
250
252
251
for run_number , run_info in enumerate (runs_info ):
253
252
try :
254
- run_id = run_info .run_id
253
+ run_id = get_mlflow_run_id (run_info )
254
+
255
255
run = self .store .get_run (run_id )
256
256
LOGGER .info (
257
- "## Preparing run %d/%d [%s]" , run_number + 1 , len_runs , run_id ,
257
+ "## Preparing run %d/%d [%s]" ,
258
+ run_number + 1 ,
259
+ len_runs ,
260
+ run_id ,
258
261
)
259
262
LOGGER .debug (
260
263
"## Preparing run %d/%d: %r" , run_number + 1 , len_runs , run
@@ -410,15 +413,25 @@ def prepare_single_mlflow_run(self, run, original_experiment_name):
410
413
break
411
414
412
415
if matching_model :
416
+ model_name = get_mlflow_model_name (matching_model )
417
+
418
+ prefix = "models/"
419
+ if artifact_path .startswith (prefix ):
420
+ comet_artifact_path = artifact_path [len (prefix ) :]
421
+ else :
422
+ comet_artifact_path = artifact_path
423
+
413
424
json_writer .log_artifact_as_model (
414
425
local_artifact_path ,
415
- artifact_path ,
426
+ comet_artifact_path ,
416
427
run_start_time ,
417
- matching_model . registered_model . name ,
428
+ model_name ,
418
429
)
419
430
else :
420
431
json_writer .log_artifact_as_asset (
421
- local_artifact_path , artifact_path , run_start_time ,
432
+ local_artifact_path ,
433
+ artifact_path ,
434
+ run_start_time ,
422
435
)
423
436
424
437
return self .compress_archive (run .info .run_id )
@@ -438,12 +451,15 @@ def upload(self, prepared_data):
438
451
project_note = experiment .tags .get ("mlflow.note.content" , None )
439
452
if project_note :
440
453
note_template = (
441
- u"/!\\ This project notes has been copied from MLFlow. It might be overwritten if you run comet_for_mlflow again/!\\ \n %s"
454
+ "/!\\ This project notes has been copied from MLFlow."
455
+ " It might be overwritten if you run comet_for_mlflow again/!\\ \n %s"
442
456
% project_note
443
457
)
444
458
# We don't support Unicode project notes yet
445
459
self .api_client .set_project_notes (
446
- self .workspace , project_name , note_template ,
460
+ self .workspace ,
461
+ project_name ,
462
+ note_template ,
447
463
)
448
464
449
465
all_project_names .append (project_name )
@@ -487,7 +503,8 @@ def upload(self, prepared_data):
487
503
LOGGER .info ("\t - %s" , url )
488
504
489
505
LOGGER .info (
490
- "Get deeper instrumentation by adding Comet SDK to your project: https://comet.ml/docs/python-sdk/mlflow/"
506
+ "Get deeper instrumentation by adding Comet SDK to your project:"
507
+ " https://comet.ml/docs/python-sdk/mlflow/"
491
508
)
492
509
LOGGER .info ("" )
493
510
@@ -598,19 +615,23 @@ def create_or_login(self):
598
615
Reporting .report ("mlflow_new_user" , api_key = new_account ["apiKey" ])
599
616
600
617
LOGGER .info (
601
- "A Comet.ml account has been created for you and an email was sent to you to setup your password later."
618
+ "A Comet.ml account has been created for you and an email was sent to"
619
+ " you to setup your password later."
602
620
)
603
621
save_api_key (new_account ["apiKey" ])
604
622
LOGGER .info (
605
- "Your Comet API Key has been saved to ~/.comet.ini, it is also available on your Comet.ml dashboard."
623
+ "Your Comet API Key has been saved to ~/.comet.ini, it is also"
624
+ " available on your Comet.ml dashboard."
606
625
)
607
626
return (
608
627
new_account ["apiKey" ],
609
628
new_account ["token" ],
610
629
)
611
630
else :
612
631
LOGGER .info (
613
- "An account already exists for this account, please input your API Key below (you can find it in your Settings page, https://comet.ml/docs/quick-start/#getting-your-comet-api-key):"
632
+ "An account already exists for this account, please input your API Key"
633
+ " below (you can find it in your Settings page,"
634
+ " https://comet.ml/docs/quick-start/#getting-your-comet-api-key):"
614
635
)
615
636
api_key = input ("API Key: " )
616
637
0 commit comments