ml.dmlc.xgboost4j.java.XGBoost.java Source code

Java tutorial

Introduction

Here is the source code for ml.dmlc.xgboost4j.java.XGBoost.java

Source

/*
 Copyright (c) 2014 by Contributors
    
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
    
 http://www.apache.org/licenses/LICENSE-2.0
    
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
package ml.dmlc.xgboost4j.java;

import java.io.IOException;
import java.io.InputStream;
import java.util.*;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * trainer for xgboost
 *
 * @author hzx
 */
public class XGBoost {
    private static final Log logger = LogFactory.getLog(XGBoost.class);

    /**
     * load model from modelPath
     *
     * @param modelPath booster modelPath (model generated by booster.saveModel)
     * @throws XGBoostError native error
     */
    public static Booster loadModel(String modelPath) throws XGBoostError {
        return Booster.loadModel(modelPath);
    }

    /**
     * Load a new Booster model from a file opened as input stream.
     * The assumption is the input stream only contains one XGBoost Model.
     * This can be used to load existing booster models saved by other xgboost bindings.
     *
     * @param in The input stream of the file,
     *           will be closed after this function call.
     * @return The create boosted
     * @throws XGBoostError
     * @throws IOException
     */
    public static Booster loadModel(InputStream in) throws XGBoostError, IOException {
        return Booster.loadModel(in);
    }

    public static Booster train(DMatrix dtrain, Map<String, Object> params, int round, Map<String, DMatrix> watches,
            IObjective obj, IEvaluation eval) throws XGBoostError {
        return train(dtrain, params, round, watches, null, obj, eval);
    }

    public static Booster train(DMatrix dtrain, Map<String, Object> params, int round, Map<String, DMatrix> watches,
            float[][] metrics, IObjective obj, IEvaluation eval) throws XGBoostError {

        //collect eval matrixs
        String[] evalNames;
        DMatrix[] evalMats;
        List<String> names = new ArrayList<String>();
        List<DMatrix> mats = new ArrayList<DMatrix>();

        for (Map.Entry<String, DMatrix> evalEntry : watches.entrySet()) {
            names.add(evalEntry.getKey());
            mats.add(evalEntry.getValue());
        }

        evalNames = names.toArray(new String[names.size()]);
        evalMats = mats.toArray(new DMatrix[mats.size()]);

        //collect all data matrixs
        DMatrix[] allMats;
        if (evalMats.length > 0) {
            allMats = new DMatrix[evalMats.length + 1];
            allMats[0] = dtrain;
            System.arraycopy(evalMats, 0, allMats, 1, evalMats.length);
        } else {
            allMats = new DMatrix[1];
            allMats[0] = dtrain;
        }

        //initialize booster
        Booster booster = new Booster(params, allMats);

        int version = booster.loadRabitCheckpoint();

        //begin to train
        for (int iter = version / 2; iter < round; iter++) {
            if (version % 2 == 0) {
                if (obj != null) {
                    booster.update(dtrain, obj);
                } else {
                    booster.update(dtrain, iter);
                }
                booster.saveRabitCheckpoint();
                version += 1;
            }

            //evaluation
            if (evalMats.length > 0) {
                String evalInfo;
                if (eval != null) {
                    evalInfo = booster.evalSet(evalMats, evalNames, eval);
                } else {
                    if (metrics == null) {
                        evalInfo = booster.evalSet(evalMats, evalNames, iter);
                    } else {
                        float[] m = new float[evalMats.length];
                        evalInfo = booster.evalSet(evalMats, evalNames, iter, m);
                        for (int i = 0; i < m.length; i++) {
                            metrics[i][iter] = m[i];
                        }
                    }
                }
                if (Rabit.getRank() == 0) {
                    Rabit.trackerPrint(evalInfo + '\n');
                }
            }
            booster.saveRabitCheckpoint();
            version += 1;
        }
        return booster;
    }

    /**
     * Cross-validation with given parameters.
     *
     * @param data    Data to be trained.
     * @param params  Booster params.
     * @param round   Number of boosting iterations.
     * @param nfold   Number of folds in CV.
     * @param metrics Evaluation metrics to be watched in CV.
     * @param obj     customized objective (set to null if not used)
     * @param eval    customized evaluation (set to null if not used)
     * @return evaluation history
     * @throws XGBoostError native error
     */
    public static String[] crossValidation(DMatrix data, Map<String, Object> params, int round, int nfold,
            String[] metrics, IObjective obj, IEvaluation eval) throws XGBoostError {
        CVPack[] cvPacks = makeNFold(data, nfold, params, metrics);
        String[] evalHist = new String[round];
        String[] results = new String[cvPacks.length];
        for (int i = 0; i < round; i++) {
            for (CVPack cvPack : cvPacks) {
                if (obj != null) {
                    cvPack.update(obj);
                } else {
                    cvPack.update(i);
                }
            }

            for (int j = 0; j < cvPacks.length; j++) {
                if (eval != null) {
                    results[j] = cvPacks[j].eval(eval);
                } else {
                    results[j] = cvPacks[j].eval(i);
                }
            }

            evalHist[i] = aggCVResults(results);
            logger.info(evalHist[i]);
        }
        return evalHist;
    }

    /**
     * make an n-fold array of CVPack from random indices
     *
     * @param data        original data
     * @param nfold       num of folds
     * @param params      booster parameters
     * @param evalMetrics Evaluation metrics
     * @return CV package array
     * @throws XGBoostError native error
     */
    private static CVPack[] makeNFold(DMatrix data, int nfold, Map<String, Object> params, String[] evalMetrics)
            throws XGBoostError {
        List<Integer> samples = genRandPermutationNums(0, (int) data.rowNum());
        int step = samples.size() / nfold;
        int[] testSlice = new int[step];
        int[] trainSlice = new int[samples.size() - step];
        int testid, trainid;
        CVPack[] cvPacks = new CVPack[nfold];
        for (int i = 0; i < nfold; i++) {
            testid = 0;
            trainid = 0;
            for (int j = 0; j < samples.size(); j++) {
                if (j > (i * step) && j < (i * step + step) && testid < step) {
                    testSlice[testid] = samples.get(j);
                    testid++;
                } else {
                    if (trainid < samples.size() - step) {
                        trainSlice[trainid] = samples.get(j);
                        trainid++;
                    } else {
                        testSlice[testid] = samples.get(j);
                        testid++;
                    }
                }
            }

            DMatrix dtrain = data.slice(trainSlice);
            DMatrix dtest = data.slice(testSlice);
            CVPack cvPack = new CVPack(dtrain, dtest, params);
            //set eval types
            if (evalMetrics != null) {
                for (String type : evalMetrics) {
                    cvPack.booster.setParam("eval_metric", type);
                }
            }
            cvPacks[i] = cvPack;
        }

        return cvPacks;
    }

    private static List<Integer> genRandPermutationNums(int start, int end) {
        List<Integer> samples = new ArrayList<Integer>();
        for (int i = start; i < end; i++) {
            samples.add(i);
        }
        Collections.shuffle(samples);
        return samples;
    }

    /**
     * Aggregate cross-validation results.
     *
     * @param results eval info from each data sample
     * @return cross-validation eval info
     */
    private static String aggCVResults(String[] results) {
        Map<String, List<Float>> cvMap = new HashMap<String, List<Float>>();
        String aggResult = results[0].split("\t")[0];
        for (String result : results) {
            String[] items = result.split("\t");
            for (int i = 1; i < items.length; i++) {
                String[] tup = items[i].split(":");
                String key = tup[0];
                Float value = Float.valueOf(tup[1]);
                if (!cvMap.containsKey(key)) {
                    cvMap.put(key, new ArrayList<Float>());
                }
                cvMap.get(key).add(value);
            }
        }

        for (String key : cvMap.keySet()) {
            float value = 0f;
            for (Float tvalue : cvMap.get(key)) {
                value += tvalue;
            }
            value /= cvMap.get(key).size();
            aggResult += String.format("\tcv-%s:%f", key, value);
        }

        return aggResult;
    }

    /**
     * cross validation package for xgb
     *
     * @author hzx
     */
    private static class CVPack {
        DMatrix dtrain;
        DMatrix dtest;
        DMatrix[] dmats;
        String[] names;
        Booster booster;

        /**
         * create an cross validation package
         *
         * @param dtrain train data
         * @param dtest  test data
         * @param params parameters
         * @throws XGBoostError native error
         */
        public CVPack(DMatrix dtrain, DMatrix dtest, Map<String, Object> params) throws XGBoostError {
            dmats = new DMatrix[] { dtrain, dtest };
            booster = new Booster(params, dmats);
            names = new String[] { "train", "test" };
            this.dtrain = dtrain;
            this.dtest = dtest;
        }

        /**
         * update one iteration
         *
         * @param iter iteration num
         * @throws XGBoostError native error
         */
        public void update(int iter) throws XGBoostError {
            booster.update(dtrain, iter);
        }

        /**
         * update one iteration
         *
         * @param obj  customized objective
         * @throws XGBoostError native error
         */
        public void update(IObjective obj) throws XGBoostError {
            booster.update(dtrain, obj);
        }

        /**
         * evaluation
         *
         * @param iter iteration num
         * @return evaluation
         * @throws XGBoostError native error
         */
        public String eval(int iter) throws XGBoostError {
            return booster.evalSet(dmats, names, iter);
        }

        /**
         * evaluation
         *
         * @param eval customized eval
         * @return evaluation
         * @throws XGBoostError native error
         */
        public String eval(IEvaluation eval) throws XGBoostError {
            return booster.evalSet(dmats, names, eval);
        }
    }
}