Name of training data file #2352
Replies: 6 comments
-
Hello @NRauschmayr, Thank you for bringing this to our attention. If I understand this correctly, when calling fit(), the name of the dataset doesn't stay as originally attended and instead for the following examples, this happened: mxnet_estimator.fit({'train': 's3://rauscn-data/data/input_data.np') = /opt/ml/input/data/train/y The dataset that was used to train was renamed to y and npy when referenced respectively for input_data.np and input_data.npy. Did this happen when training on SageMaker or through local mode? I was looking through our Python SDK and I don't think we modify the URI provided by the user.
Would you be able to provide more information on how you are instantiating your estimator? Please let me know if there is anything I can clarify. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hello @ChoiByungWook, yes exactly that is what happened I am creating the Estimator, like this:
|
Beta Was this translation helpful? Give feedback.
-
If you go to the corresponding training job you ran in the sagemaker console what Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hello @nadiaya, When calling |
Beta Was this translation helpful? Give feedback.
-
But inside of the container for this training job you got: Let me escalate this issue to the appropriate service team. |
Beta Was this translation helpful? Give feedback.
-
Exactly. In my training script the following crashes: From a user perspective, it is probably best to just get an error message if there is such a typo in the filename. |
Beta Was this translation helpful? Give feedback.
-
Reference: 0174624067
When calling fit, I indicated
input_data.np
instead ofinput_data.npy
e.g.The
input_data.npy
was neverthelss downloaded but the filename was theny
. Initially I thought SageMaker had renamed the file, until I figured out that the filename was caused by the typo. When indicating for instanceinput_data.
then the name of the downloaded file would benpy
. Is this intended?Beta Was this translation helpful? Give feedback.
All reactions