0

I am trying to save my MultiClassification model in Python.

I know that currently Catboost currently does not support saving MultiClassification models in Python.

Are there any workarounds to this, if I want to save and apply this model do I have to use Java or something else?

model1.save_model('../model', pool=train_dataset , format="python")
rreg101
  • 209
  • 1
  • 9

1 Answers1

0

Found out you could set format="cbm" to save it in binary format.

rreg101
  • 209
  • 1
  • 9