Skip to content

Commit

Permalink
Updated version information
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Jul 21, 2024
1 parent 9aae3c7 commit 598789e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,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-rexp/target/pmml-rexp-1.5-SNAPSHOT.jar`, and an executable uber-JAR file `pmml-rexp-example/target/pmml-rexp-example-executable-1.5-SNAPSHOT.jar`.
The build produces a library JAR file `pmml-rexp/target/pmml-rexp-1.6-SNAPSHOT.jar`, and an executable uber-JAR file `pmml-rexp-example/target/pmml-rexp-example-executable-1.6-SNAPSHOT.jar`.

# Usage #

Expand All @@ -131,17 +131,17 @@ saveRDS(rf, "rf.rds", version = 2)

Converting the RDS file `rf.rds` to a PMML file `rf.pmml`:
```
java -jar pmml-rexp-example/target/pmml-rexp-example-executable-1.5-SNAPSHOT.jar --rds-input rf.rds --pmml-output rf.pmml
java -jar pmml-rexp-example/target/pmml-rexp-example-executable-1.6-SNAPSHOT.jar --rds-input rf.rds --pmml-output rf.pmml
```

Getting help:
```
java -jar pmml-rexp-example/target/pmml-rexp-example-executable-1.5-SNAPSHOT.jar --help
java -jar pmml-rexp-example/target/pmml-rexp-example-executable-1.6-SNAPSHOT.jar --help
```

The conversion of large files (1 GB and beyond) can be sped up by increasing the JVM heap size using `-Xms` and `-Xmx` options:
```
java -Xms4G -Xmx8G -jar pmml-rexp-example/target/pmml-rexp-example-executable-1.5-SNAPSHOT.jar --rds-input rf.rds --pmml-output rf.pmml
java -Xms4G -Xmx8G -jar pmml-rexp-example/target/pmml-rexp-example-executable-1.6-SNAPSHOT.jar --rds-input rf.rds --pmml-output rf.pmml
```

# Documentation #
Expand Down

0 comments on commit 598789e

Please sign in to comment.