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 28, 2023
1 parent 6a8cdfb commit 1255f0e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ mvn clean install
```

The build produces two JAR files:
* `pmml-sparkml/target/pmml-sparkml-2.4-SNAPSHOT.jar` - Library JAR file.
* `pmml-sparkml-exampletarget/pmml-sparkml-example-executable-2.4-SNAPSHOT.jar` - Example application JAR file.
* `pmml-sparkml/target/pmml-sparkml-2.5-SNAPSHOT.jar` - Library JAR file.
* `pmml-sparkml-exampletarget/pmml-sparkml-example-executable-2.5-SNAPSHOT.jar` - Example application JAR file.

# Usage #

Expand Down Expand Up @@ -243,12 +243,12 @@ The example application JAR file does not include Apache Spark runtime libraries

For example, converting a pair of Spark ML schema and pipeline serialization files `pmml-sparkml/src/test/resources/schema/Iris.json` and `pmml-sparkml/src/test/resources/pipeline/DecisionTreeIris.zip`, respectively, to a PMML file `DecisionTreeIris.pmml`:
```
spark-submit --master local --class org.jpmml.sparkml.example.Main pmml-sparkml-example/target/pmml-sparkml-example-executable-2.4-SNAPSHOT.jar --schema-input pmml-sparkml/src/test/resources/schema/Iris.json --pipeline-input pmml-sparkml/src/test/resources/pipeline/DecisionTreeIris.zip --pmml-output DecisionTreeIris.pmml
spark-submit --master local --class org.jpmml.sparkml.example.Main pmml-sparkml-example/target/pmml-sparkml-example-executable-2.5-SNAPSHOT.jar --schema-input pmml-sparkml/src/test/resources/schema/Iris.json --pipeline-input pmml-sparkml/src/test/resources/pipeline/DecisionTreeIris.zip --pmml-output DecisionTreeIris.pmml
```

Getting help:
```
spark-submit --master local --class org.jpmml.sparkml.example.Main pmml-sparkml-example/target/pmml-sparkml-example-executable-2.4-SNAPSHOT.jar --help
spark-submit --master local --class org.jpmml.sparkml.example.Main pmml-sparkml-example/target/pmml-sparkml-example-executable-2.5-SNAPSHOT.jar --help
```

# Documentation #
Expand Down
2 changes: 1 addition & 1 deletion pmml-sparkml-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-sparkml</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</parent>

<groupId>org.jpmml</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pmml-sparkml-lightgbm/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-sparkml</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</parent>

<groupId>org.jpmml</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pmml-sparkml-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-sparkml</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</parent>

<groupId>org.jpmml</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pmml-sparkml/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-sparkml</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</parent>

<groupId>org.jpmml</groupId>
Expand Down
10 changes: 5 additions & 5 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-sparkml</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
<packaging>pom</packaging>

<name>JPMML-SparkML</name>
Expand Down Expand Up @@ -63,22 +63,22 @@
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-sparkml</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-sparkml-example</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-sparkml-lightgbm</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-sparkml-xgboost</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 1255f0e

Please sign in to comment.