Replies: 1 comment
-
根据您的描述和引用的相关问题,缺少 1. 确认文件的命名和路径您提到下载的模型文件包含以下内容:
这些文件已经是 Paddle 模型推理所需的标准文件格式。其中:
请尝试将 2. 检查加载代码加载模型时,确保代码正确指定了模型路径。例如: import paddle
from paddlex import deploy
# 指定模型路径
model_dir = "/path/to/your/infer_model/"
# 加载推理模型
model = deploy.Predictor(model_dir) 确保
3. 重新导出模型如果您是从训练模型导出的推理模型,可能在导出过程中配置有误,导致文件缺失。以下是重新导出的步骤: a. 检查
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我在官方的链接下载picodet_lcnet_x1_0_fgd_layout_cdla_infer模型 只有以下四个文件
infer_cfg.yml
model.pdiparams
model.pdiparams.info
model.pdmodel
请问缺少inference.yml的文件是在哪里下载
Beta Was this translation helpful? Give feedback.
All reactions