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
Hello,
I'm currently attempting to generate C# code from a LightGBM model that I possess. I've followed these steps:
import lightgbm as lgb from pathlib import Path booster = lgb.Booster(model_file='my model file') c_sharp_code = m2c.export_to_c_sharp(booster.dump_model(), 'model.cs', 'MyModel')
However, I'm encountering an error during the export process:
NotImplementedError: Model 'builtins_dict' is not supported
Do you have any insights on how I can resolve this issue?
Thank you for your assistance.
Wil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm currently attempting to generate C# code from a LightGBM model that I possess. I've followed these steps:
However, I'm encountering an error during the export process:
NotImplementedError: Model 'builtins_dict' is not supported
Do you have any insights on how I can resolve this issue?
Thank you for your assistance.
Wil
The text was updated successfully, but these errors were encountered: