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
{{ message }}
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
ValueErrorTraceback (most recent call last)
in ()
6
7 [inference_program, feed_target_names,
----> 8 fetch_targets] = fluid.io.load_inference_model(params_dirname, exe)
9
10 # The input's dimension of conv should be 4-D or 5-D.
/opt/conda/lib/python2.7/site-packages/paddle/fluid/io.pyc in load_inference_model(dirname, executor, model_filename, params_filename, pserver_endpoints)
1079 """
1080 if not os.path.isdir(dirname):
-> 1081 raise ValueError("There is no directory named '%s'", dirname)
1082
1083 if model_filename is not None:
ValueError: ("There is no directory named '%s'", 'image_classification_resnet.inference.model')
The text was updated successfully, but these errors were encountered:
Inferencer 配置和预测
代码部分运行报错
ValueErrorTraceback (most recent call last)
in ()
6
7 [inference_program, feed_target_names,
----> 8 fetch_targets] = fluid.io.load_inference_model(params_dirname, exe)
9
10 # The input's dimension of conv should be 4-D or 5-D.
/opt/conda/lib/python2.7/site-packages/paddle/fluid/io.pyc in load_inference_model(dirname, executor, model_filename, params_filename, pserver_endpoints)
1079 """
1080 if not os.path.isdir(dirname):
-> 1081 raise ValueError("There is no directory named '%s'", dirname)
1082
1083 if model_filename is not None:
ValueError: ("There is no directory named '%s'", 'image_classification_resnet.inference.model')
The text was updated successfully, but these errors were encountered: