33
33
read_file ,
34
34
upload_folder ,
35
35
)
36
- from ads .aqua .config .config import get_valid_tasks
37
36
from ads .aqua .constants import (
38
37
AQUA_MODEL_ARTIFACT_CONFIG ,
39
38
AQUA_MODEL_ARTIFACT_CONFIG_MODEL_NAME ,
@@ -768,7 +767,6 @@ def _create_model_catalog_entry(
768
767
}
769
768
)
770
769
tags .update ({Tags .BASE_MODEL_CUSTOM : "true" })
771
- logger .info (f"tags: { tags } " )
772
770
if validation_result and validation_result .model_formats :
773
771
tags .update (
774
772
{
@@ -781,7 +779,6 @@ def _create_model_catalog_entry(
781
779
782
780
# Remove `ready_to_import` tag that might get copied from service model.
783
781
tags .pop (Tags .READY_TO_IMPORT , None )
784
- logger .info (f"tags: { tags } " )
785
782
if verified_model :
786
783
# Verified model is a model in the service catalog that either has no artifacts but contains all the necessary metadata for deploying and fine tuning.
787
784
# If set, then we copy all the model metadata.
@@ -863,7 +860,6 @@ def _create_model_catalog_entry(
863
860
category = "Other" ,
864
861
replace = True ,
865
862
)
866
- logger .info (f"tags: { tags } " )
867
863
model = (
868
864
model .with_custom_metadata_list (metadata )
869
865
.with_compartment_id (compartment_id or COMPARTMENT_OCID )
@@ -1332,7 +1328,6 @@ def register(
1332
1328
else :
1333
1329
artifact_path = import_model_details .os_path .rstrip ("/" )
1334
1330
1335
- logger .info (f"task: { import_model_details .task } " )
1336
1331
# Create Model catalog entry with pass by reference
1337
1332
ds_model = self ._create_model_catalog_entry (
1338
1333
os_path = artifact_path ,
0 commit comments