onnxmltools icon indicating copy to clipboard operation
onnxmltools copied to clipboard

ONNXMLTools enables conversion of models to ONNX

Results 144 onnxmltools issues
Sort by recently updated
recently updated
newest added

i get below error when convert from sparkml model to ONNX ``` An error was encountered: AnalysisException [Traceback (most recent call last): , File "/tmp/spark-591fcd26-f35c-4194-9d93-9e4fa0b7a634/shell_wrapper.py", line 113, in exec self._exec_then_eval(code)...

Following the procedure for conversion to onnx outlines here: https://onnx.ai/sklearn-onnx/auto_tutorial/plot_gexternal_xgboost.html , I found that when trying to load a XGBoost regression model the predictions are wrong. The problem is present...

Following the procedure for onnx conversion here: https://onnx.ai/sklearn-onnx/auto_tutorial/plot_gexternal_xgboost.html , I found that the probabilities when loaded from the onnx file are wrong for a dataset with less than 3 classes....

http://onnx.ai/sklearn-onnx/auto_examples/plot_pipeline_xgboost.html Download file found at bottom of page in that link, and run with count:poisson: `pipe = Pipeline([("scaler", StandardScaler()), ("xgb", XGBRegressor(n_estimators=3, objective='count:poisson'))])` Comparing results before and after serializing/deserializing: predict [0.9388053...

This issue arises while attempting to utilize onnxmltools.convert.convert_lightgbm. It invokes the method at /opt/conda/lib/python3.8/site-packages/onnxmltools/convert/lightgbm/operator_converters/LightGbm.py:267, specifically within dump_booster_model(self, num_iteration, start_iteration, importance_type, verbose). Here is the snippet related to the issue: ```...

onnxmltools version: 1.11.2 Dear onnxmltools developers, I met an issue when converting an Booster from XGBoost to onnx. If I train the model by setting "colsample_bytree" to be 1, the...

Hi, I'm trying to convert an `XGBRegressor` to `ONNX` and what I get back is a `TreeEnsembleRegressor` operator. I've noticed that the output dimensions between the original model prediction and...

Hello, I am trying to convert an XGBRanker model to ONNX, but I see that it is not supported. I started the process by following the instructions at https://onnx.ai/sklearn-onnx/auto_tutorial/plot_gexternal_xgboost.html and...