org.jpmml.lightgbm.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpmml-lightgbm Show documentation
Show all versions of jpmml-lightgbm Show documentation
Java library and command-line application for converting LightGBM models to PMML
/*
* Copyright (c) 2017 Villu Ruusmann
*
* This file is part of JPMML-LightGBM
*
* JPMML-LightGBM is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JPMML-LightGBM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with JPMML-LightGBM. If not, see .
*/
package org.jpmml.lightgbm;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import com.beust.jcommander.JCommander;
import com.beust.jcommander.Parameter;
import com.beust.jcommander.ParameterException;
import org.dmg.pmml.FieldName;
import org.dmg.pmml.PMML;
import org.jpmml.model.metro.MetroJAXBUtil;
public class Main {
@Parameter (
names = {"--help"},
description = "Show the list of configuration options and exit",
help = true
)
private boolean help = false;
@Parameter (
names = {"--lgbm-input"},
description = "LightGBM text input file",
required = true
)
private File input = null;
@Parameter (
names = {"--pmml-output"},
description = "PMML output file",
required = true
)
private File output = null;
@Parameter (
names = {"--target-name"},
description = "Target name. Defaults to \"_target\""
)
private String targetName = null;
@Parameter (
names = {"--target-categories"},
description = "Target categories. Defaults to 0-based index [0, 1, .., num_class - 1]"
)
private List targetCategories = null;
@Parameter (
names = {"--num-iteration"},
description = "Limit the number of trees. Defaults to all trees"
)
private Integer numIteration = null;
@Parameter (
names = {"--compact"},
description = "Transform LightGBM-style trees to PMML-style trees",
arity = 1
)
private boolean compact = true;
static
public void main(String... args) throws Exception {
Main main = new Main();
JCommander commander = new JCommander(main);
commander.setProgramName(Main.class.getName());
try {
commander.parse(args);
} catch(ParameterException pe){
StringBuilder sb = new StringBuilder();
sb.append(pe.toString());
sb.append("\n");
commander.usage(sb);
System.err.println(sb.toString());
System.exit(-1);
}
if(main.help){
StringBuilder sb = new StringBuilder();
commander.usage(sb);
System.out.println(sb.toString());
System.exit(0);
}
main.run();
}
private void run() throws Exception {
GBDT gbdt;
try(InputStream is = new FileInputStream(this.input)){
gbdt = LightGBMUtil.loadGBDT(is);
}
Map options = new LinkedHashMap<>();
options.put(HasLightGBMOptions.OPTION_COMPACT, this.compact);
options.put(HasLightGBMOptions.OPTION_NUM_ITERATION, this.numIteration);
PMML pmml = gbdt.encodePMML(this.targetName != null ? FieldName.create(this.targetName) : null, this.targetCategories, options);
try(OutputStream os = new FileOutputStream(this.output)){
MetroJAXBUtil.marshalPMML(pmml, os);
}
}
}