You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of using "import imp", I suggest to use "import importlib" based on the error message below:
$ mxnet-model-export
/Users/thakerb/anaconda3/envs/mms_feb_2018_1/lib/python3.6/site-packages/mms/export_model.py:18: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
import imp
usage: mxnet-model-export [-h] --model-name MODEL_NAME --model-path MODEL_PATH
[--service-file-path SERVICE_FILE_PATH]
mxnet-model-export: error: the following arguments are required: --model-name, --model-path
The text was updated successfully, but these errors were encountered:
Instead of using "import imp", I suggest to use "import importlib" based on the error message below:
$ mxnet-model-export
/Users/thakerb/anaconda3/envs/mms_feb_2018_1/lib/python3.6/site-packages/mms/export_model.py:18: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
import imp
usage: mxnet-model-export [-h] --model-name MODEL_NAME --model-path MODEL_PATH
[--service-file-path SERVICE_FILE_PATH]
mxnet-model-export: error: the following arguments are required: --model-name, --model-path
The text was updated successfully, but these errors were encountered: