[refactor] move java package to namespace java

This commit is contained in:
tqchen
2016-03-05 09:53:46 -08:00
committed by CodingCat
parent ae969a0e69
commit e8560c7909
15 changed files with 199 additions and 195 deletions

View File

@@ -19,10 +19,11 @@ import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import ml.dmlc.xgboost4j.java.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import ml.dmlc.xgboost4j.java.*;
/**
* an example user define objective and eval
* NOTE: when you do customized loss function, the default prediction value is margin

View File

@@ -4,10 +4,10 @@ import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import ml.dmlc.xgboost4j.java.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import ml.dmlc.xgboost4j.java.*;
/**
* Distributed training example, used to quick test distributed training.