Skip to content

Commit ef022a9

Browse files
committed
Update documentation.
1 parent ce347c4 commit ef022a9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ language: java
33
install: echo "skip" # or anything that returns 0 status
44

55
script:
6-
- mvn compile -P generate-train-examples # Train Examples here as well.
6+
- mvn compile -P train-all-examples # Train Examples here as well.
77
- mvn test
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
From the root directory run the following command:
1212

1313
- Just compile all examples: `mvn compile`
14-
- Compile and train all examples: `mvn compile -P generate-train-examples`
14+
- Compile and train all examples: `mvn compile -P train-all-examples`
1515
See more details [here](lbjava-examples/README.md).
1616

1717
- Test the whole project: `mvn test`

lbjava-examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ mvn compile
2323
To compile and train all examples:
2424

2525
```
26-
mvn compile -P generate-train-examples
26+
mvn compile -P train-all-examples
2727
```
2828

2929
To compile individual examples:
3030

3131
```
32-
mvn compile -P generate-train-examples,<example-profile>
32+
mvn compile -P train-<example-name>
3333
```
3434

3535
Available profile names are: `badges`, `entity`, `newsgroup`, `sentiment`, `setcover`, `spam`, `regression`.
3636

37-
Example: ```mvn compile -P generate-train-examples,spam``` for the generating and training just the Spam classifier example.
37+
Example: ```mvn compile -P train-spam``` for the generating and training just the Spam classifier example.
3838

3939

4040

0 commit comments

Comments
 (0)