我受过训练CatBoostClassifier
来解决我的分类任务。现在我需要保存模型并在另一个应用程序中使用它进行预测。为此,我通过方法保存模型并通过save_model
方法恢复它load_model
。
但是,每次调用predict
恢复的模型时,都会出现错误:
CatboostError: There is no trained model to use predict(). Use fit() to train model. Then use predict().
所以看起来我需要再次训练我的模型,而我需要恢复预训练模型并将其仅用于预测。
我在这里做错了什么?我应该使用一种特殊的方式来加载模型进行预测吗?
我的训练过程是这样的:
model = CatBoostClassifier(
custom_loss=['Accuracy'],
random_seed=42,
logging_level='Silent',
loss_function='MultiClass')
model.fit(
x_train,
y_train,
cat_features=None,
eval_set=(x_validation, y_validation),
plot=True)
...
model.save("model.cbm")
我使用以下代码恢复模型:
model = CatBoostClassifier(
custom_loss=['Accuracy'],
random_seed=42,
logging_level='Silent',
loss_function='MultiClass')
model.load_model("model.cbm")
...
predict = self.model.predict(inputs)