How to use Orange3 model pkcls in Colab with python for model prediction
by 吳俊逸
2021-03-10 23:15:27, Reply(0), Views(2515)

key:




1) model export as (pkcls)
2) data export as (tab)
3) import Orange (install Orange3) & pickle
train your model, and save the model as pkcls. Moreover, save your test data as tab file.

then, using colab with python for model prediction
1) pip install orange3
2) import Orange
3) import pickle

load your model (pickle.load) and
load your test data (Orange.data.Table),
then predict the result


Attachments: