View on GitHub

record-classification

This project provides an automatic record classification tool.

set Command

The set command sets the value of configurable variables in the classli configuration. The configurable variables are specified with one of the following options:

At least one option must be specified when calling the set command. For example, execution of the following command:

set --delimiter "|"

sets the default delimiter to | (pipe) character. Since the pipe character is a special character in command-line environment, it has been surrounded by double quotes.

In another example, the following command:

set -t 0.7

sets the default training ratio to 70%. This means unless otherwise specified by default 70% of loaded gold standard data will be used for training the classifier and the remaining 30% will be used for evaluation.

It is also possible to set multiple values at once. For example, the following command:

set -c OLR -r 42 -s JSON

sets the classifier to the online logistic regression classifier, the random seed to 42 and the classifier serialization format to JSON.

Home | CLI