Skip to content

Commit

Permalink
Updated version information
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Dec 8, 2023
1 parent 98cd675 commit c9d5464
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Enter the project root directory and build using [Apache Maven](https://maven.ap
mvn clean install
```

The build produces a library JAR file `pmml-xgboost/target/pmml-xgboost-1.7-SNAPSHOT.jar`, and an executable uber-JAR file `pmml-xgboost-example/target/pmml-xgboost-example-executable-1.7-SNAPSHOT.jar`.
The build produces a library JAR file `pmml-xgboost/target/pmml-xgboost-1.8-SNAPSHOT.jar`, and an executable uber-JAR file `pmml-xgboost-example/target/pmml-xgboost-example-executable-1.8-SNAPSHOT.jar`.

# Usage #

Expand Down Expand Up @@ -191,14 +191,14 @@ audit_xgb.save_model("XGBoostAudit.model")

Converting the model file `XGBoostAudit.model` (binary data format) together with the associated feature map file `Audit.fmap` to a PMML file `XGBoostAudit.pmml`:
```
java -jar pmml-xgboost-example/target/pmml-xgboost-example-executable-1.7-SNAPSHOT.jar --model-input XGBoostAudit.model --fmap-input Audit.fmap --target-name Adjusted --pmml-output XGBoostAudit.pmml
java -jar pmml-xgboost-example/target/pmml-xgboost-example-executable-1.8-SNAPSHOT.jar --model-input XGBoostAudit.model --fmap-input Audit.fmap --target-name Adjusted --pmml-output XGBoostAudit.pmml
```

If the XGBoost model contains an embedded feature map, then the `--fmap-input` command-line option may be omitted.

Getting help:
```
java -jar pmml-xgboost-example/target/pmml-xgboost-example-executable-1.7-SNAPSHOT.jar --help
java -jar pmml-xgboost-example/target/pmml-xgboost-example-executable-1.8-SNAPSHOT.jar --help
```

# Documentation #
Expand Down
2 changes: 1 addition & 1 deletion pmml-xgboost-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jpmml</groupId>
<artifactId>jpmml-xgboost</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.8-SNAPSHOT</version>
</parent>

<groupId>org.jpmml</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pmml-xgboost/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jpmml</groupId>
<artifactId>jpmml-xgboost</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.8-SNAPSHOT</version>
</parent>

<groupId>org.jpmml</groupId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.jpmml</groupId>
<artifactId>jpmml-xgboost</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.8-SNAPSHOT</version>
<packaging>pom</packaging>

<name>JPMML-XGBoost</name>
Expand Down Expand Up @@ -53,12 +53,12 @@
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-xgboost</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-xgboost-example</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.8-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down

0 comments on commit c9d5464

Please sign in to comment.