We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2429403 commit dc48d4eCopy full SHA for dc48d4e
python/hsml/engine/model_engine.py
@@ -217,7 +217,7 @@ def _upload_local_model(
217
# we need to replace the local path prefix with the hdfs path prefix (i.e., /srv/hops/....../root with /Projects/.../)
218
remote_base_path = root.replace(
219
from_local_model_path, to_model_version_path
220
- )
+ ).replace(os.sep, "/")
221
for d_name in dirs:
222
self._engine.mkdir(remote_base_path + "/" + d_name)
223
n_dirs += 1
0 commit comments