可以使用load_persistables加载模型做评估
Created by: yeyupiaoling
环境
- PaddlePaddle 1.2.0
- Python 3.5
- Ubuntu 16.04
问题
我在这里:https://github.com/PaddlePaddle/models/blob/develop/fluid/PaddleCV/image_classification/eval.py 看到了模型评估的方式。 但它加载模型的方式是:https://github.com/PaddlePaddle/models/blob/022c0899a325107821eff6754702ea0f5fb82ed2/fluid/PaddleCV/image_classification/eval.py#L81-L86
我加载模型的方式是:
fluid.io.load_persistables(executor=exe, dirname='model/')
我这样加载模型是否合理,程序是能够正常运行的。