Skip to content

Commit

Permalink
Create export path if not present (#3331)
Browse files Browse the repository at this point in the history
Co-authored-by: Ankith Gunapal <[email protected]>
  • Loading branch information
mreso and agunapal authored Oct 3, 2024
1 parent 9d10087 commit e8879c1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion model-archiver/model_archiver/model_packaging_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
MANIFEST_FILE_NAME = "MANIFEST.json"
MAR_INF = "MAR-INF"

logger = logging.getLogger(__file__)


class ModelExportUtils(object):
"""
Expand Down Expand Up @@ -366,7 +368,12 @@ def check_model_name_regex_or_exit(model_name):
@staticmethod
def validate_inputs(model_name, export_path):
ModelExportUtils.check_model_name_regex_or_exit(model_name)
if not os.path.isdir(os.path.abspath(export_path)):
if not os.path.exists(os.path.abspath(export_path)):
logger.warning(
f"Export directory ({export_path}) does not exist. Creating..."
)
os.makedirs(os.path.abspath(export_path))
elif not os.path.isdir(os.path.abspath(export_path)):
raise ModelArchiverError(
"Given export-path {} is not a directory. "
"Point to a valid export-path directory.".format(export_path)
Expand Down

0 comments on commit e8879c1

Please sign in to comment.