sassoftware / python-sasctl

Python package and CLI for user-friendly integration with SAS Viya
https://sassoftware.github.io/python-sasctl
Apache License 2.0
46 stars 41 forks source link

Scoring code function structure generates an error for LGBoost and XGBoost packages #186

Open zwyszomi opened 6 months ago

zwyszomi commented 6 months ago

Issue description Scoring function In the attached screen there is an extract from scoring code generated by sasctl for Python models when imported into SAS Model Manager. The key part is an option: dtype=object which is probably fine for sci-kit learn based models but it causes the errors for LGBoost and XGBoost models. When any of these package is used to build and import the model into SAS Model Manager the scoring test will fail due to PyMas execute function error: DS2 "pymas" package encountered a failure in the 'execute' method ScoringTest.log In CAS log You can find the root cause for that error: Extract sas-cas-server.log The object data type is not supported by such popular Python models. I had to manually remove dtype=object , which means the data type will be inferred. And then the Test Score works fine. I hope the intention of sasctl package is support Python developed models, not only sci-kit learn based ones?

Version 1.10.1

zwyszomi commented 6 months ago

I see that there is already similar issue reported with dtype as a topic