jpmml / jpmml-lightgbm

Java library and command-line application for converting LightGBM models to PMML
GNU Affero General Public License v3.0
174 stars 58 forks source link

import project, cannot find "PandasCategoricalParser" #42

Closed yuzhixing closed 3 years ago

yuzhixing commented 3 years ago

"PandasCategoricalParser" in "GBDT", where is from?

vruusmann commented 3 years ago

The org.jpmml.lightgbm.PandasCategoricalParser class is generated by the JavaCC tool during the build.

Run Apache Maven command mvn clean package, and you shall find this class under the target/generated-sources/javacc directory.

yuzhixing commented 3 years ago

thanks