iLMS知識社群ePortfolioeeClass學習平台空大首頁登入
位置: 吳俊逸 > AI
How to use Orange3 model pkcls in Colab with python for model prediction
by 吳俊逸 2021-03-10 23:15:27, 回應(0), 人氣(3029)
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