Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.31 KB

README.md

File metadata and controls

41 lines (25 loc) · 1.31 KB

LBJava examples

Here are a couple of sample classification projects which are using LBJava.

  1. Entity Relations Classification
  2. Set Cover Problem
  3. Badges Classification
  4. Newsgroup Classification
  5. Spam Classification
  6. Sentiment Classification
  7. Regression Classification

How to run

From the root directory, run the appropriate commands:

To generate lbj to java and compile examples:

mvn compile

To compile and train all examples:

mvn compile -P train-all-examples

To compile individual examples:

mvn compile -P train-<example-name>

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

Example: mvn compile -P train-spam for the generating and training just the Spam classifier example.