We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduce
X = ( pd.DataFrame( np.array(30 * [["a", 1]] + 30 * [["b", 2]] + 30 * [["c", 3]]), columns=["x1", "x2"], ) .assign(x1=lambda df: df["x1"].astype("category")) .assign(x2=lambda df: df["x2"].astype(float)) ) y = np.array(60 * [5] + 30 * [10]) X.dtypes bst = lgb.LGBMRegressor(n_estimators=5) bst.fit(X, y) bst.predict(X.head(2)) bst.booster_.save_model("model.txt") model = treelite.Model.load('model.txt', model_format='lightgbm') model.export_lib(toolchain="gcc", libpath='./mymodel.so', verbose=True) predictor = treelite_runtime.Predictor('./mymodel.so', verbose=True)
the above all works, but not sure how to use predictor, as
predictor
dmat = treelite_runtime.DMatrix(X.head(2).to_numpy()) predictor.predict(dmat)
leads to error like
41 return 'float64' 42 else: ---> 43 raise ValueError(f'Unrecognized NumPy type: {type_info}') 44 45 ValueError: Unrecognized NumPy type: object
The model file is like model.txt
at the end of model.txt, it has
model.txt
... end of parameters pandas_categorical:[["a", "b", "c"]]
My guess is that treelite doesn't make use of the pandas_categorical line yet, so trying to confirm.
pandas_categorical
Versions:
lightgbm==3.1.1 treelite==2.2.0 treelite-runtime==2.2.0
The text was updated successfully, but these errors were encountered:
My guess is that treelite doesn't make use of the pandas_categorical line yet
You are right, Treelite does not yet recognize pandas_categorical field yet. I will mark this as a feature request.
Sorry, something went wrong.
No branches or pull requests
Reproduce
the above all works, but not sure how to use
predictor
, asleads to error like
The model file is like
model.txt
at the end of
model.txt
, it hasMy guess is that treelite doesn't make use of the
pandas_categorical
line yet, so trying to confirm.Versions:
The text was updated successfully, but these errors were encountered: