Skip to content

Commit c13ec5f

Browse files
authored
Merge pull request #2 from h2oai/mr/docs/update-readme
Update README.md
2 parents eb54b7d + 87e13ad commit c13ec5f

File tree

1 file changed

+7
-22
lines changed

1 file changed

+7
-22
lines changed

README.md

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
xgboost-predictor-java
22
======================
3-
4-
[![Build Status](https://travis-ci.org/komiya-atsushi/xgboost-predictor-java.svg?branch=master)](https://travis-ci.org/komiya-atsushi/xgboost-predictor-java)
5-
[![Download](https://api.bintray.com/packages/komiya-atsushi/maven/xgboost-predictor/images/download.svg) ](https://bintray.com/komiya-atsushi/maven/xgboost-predictor/_latestVersion)
3+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/ai.h2o/xgboost-predictor/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ai.h2o/xgboost-predictor)
64

75
Pure Java implementation of [XGBoost](https://github.com/dmlc/xgboost/) predictor for online prediction tasks.
86

@@ -14,18 +12,11 @@ Pure Java implementation of [XGBoost](https://github.com/dmlc/xgboost/) predicto
1412
If you use **Maven**:
1513

1614
```xml
17-
<repositories>
18-
<repository>
19-
<id>bintray-komiya-atsushi-maven</id>
20-
<url>http://dl.bintray.com/komiya-atsushi/maven</url>
21-
</repository>
22-
</repositories>
23-
2415
<dependencies>
2516
<dependency>
26-
<groupId>biz.k11i</groupId>
17+
<groupId>ai.h2o</groupId>
2718
<artifactId>xgboost-predictor</artifactId>
28-
<version>0.3.0</version>
19+
<version>0.3.1</version>
2920
</dependency>
3021
</dependencies>
3122
```
@@ -34,22 +25,21 @@ Or **Gradle**:
3425

3526
```groovy
3627
repositories {
37-
// Use jcenter instead of mavenCentral
38-
jcenter()
28+
mavenCentral()
3929
}
4030
4131
dependencies {
42-
compile group: 'biz.k11i', name: 'xgboost-predictor', version: '0.3.0'
32+
compile group: 'ai.h2o', name: 'xgboost-predictor', version: '0.3.1'
4333
}
4434
```
4535

4636
Or **sbt**:
4737

4838
```scala
49-
resolvers += Resolver.jcenterRepo
39+
resolvers += DefaultMavenRepository
5040

5141
libraryDependencies ++= Seq(
52-
"biz.k11i" % "xgboost-predictor" % "0.3.0"
42+
"ai.h2o" % "xgboost-predictor" % "0.3.1"
5343
)
5444
```
5545

@@ -101,11 +91,6 @@ public class HowToUseXgboostPredictor {
10191
```
10292

10393

104-
## Apache Spark integration
105-
106-
See detail [xgboost-predictor-spark](https://github.com/komiya-atsushi/xgboost-predictor-java/tree/master/xgboost-predictor-spark).
107-
108-
10994
# Benchmark
11095

11196
Throughput comparison to [xgboost4j 1.1](https://github.com/dmlc/xgboost/tree/master/java/xgboost4j) by [xgboost-predictor-benchmark](https://github.com/komiya-atsushi/xgboost-predictor-benchmark).

0 commit comments

Comments
 (0)