geval/README.md

306 lines
13 KiB
Markdown
Raw Normal View History

2015-08-25 16:10:20 +02:00
# GEval
2018-06-02 13:02:18 +02:00
GEval is a Haskell library and a stand-alone tool for evaluating the
2015-12-20 19:18:02 +01:00
results of solutions to machine learning challenges as defined on the
2018-06-12 09:10:11 +02:00
[Gonito](http://gonito.net) platform. Also could be used outside the
context of Gonito.net challenges, assuming the test data is given in
simple TSV (tab-separated values) files.
2015-08-25 16:10:20 +02:00
2015-08-25 16:44:53 +02:00
Note that GEval is only about machine learning evaluation. No actual
machine learning algorithms are available here.
2018-06-02 13:02:18 +02:00
The official repository is `git://gonito.net/geval`, browsable at
<https://gonito.net/gitlist/geval.git/>.
2015-08-25 16:10:20 +02:00
## Installing
2015-10-27 12:56:17 +01:00
You need [Haskell Stack](https://github.com/commercialhaskell/stack).
2018-06-11 21:29:39 +02:00
You could install Stack with your package manager or with:
curl -sSL https://get.haskellstack.org/ | sh
2015-10-27 12:56:17 +01:00
When you've got Haskell Stack, install GEval with:
2015-08-25 16:10:20 +02:00
2015-12-20 18:10:20 +01:00
git clone git://gonito.net/geval
2015-08-25 16:10:20 +02:00
cd geval
stack setup
2018-06-11 21:31:32 +02:00
stack test
2015-08-25 16:10:20 +02:00
stack install
2018-06-11 21:29:39 +02:00
(Note that when you're running Haskell Stack for the first time it
will take some time and a couple of gigabytes on your disk.)
2015-12-20 19:18:02 +01:00
By default, `geval` binary is installed in `$HOME/.local/bin`, so in
2015-08-25 21:26:51 +02:00
order to run `geval` you need to either add `$HOME/.local/bin` to
2018-06-11 21:29:39 +02:00
`$PATH` in your configuration or to type:
2015-08-25 16:44:53 +02:00
2015-08-27 07:36:02 +02:00
PATH="$HOME/.local/bin" geval ...
2015-08-25 16:44:53 +02:00
2018-06-11 21:29:39 +02:00
### Plan B — just download the GEval binary
(Assuming you have a standard 64-bit Linux.)
wget https://gonito.net/get/bin/geval
chmod u+x geval
./geval --help
2018-06-12 09:10:11 +02:00
## Examples
Let us download a Gonito.net challenge:
git clone git://gonito.net/sentiment-by-emoticons
The task is to predict the sentiment of a Polish short text -- whether
it is positive or negative (or to be precise: to guess whether a
2018-06-12 21:52:18 +02:00
positive or negative emoticon was used). The train set is given
in the `train/train.tsv.xz` file, each item is given in a separate file,
have a look at the first 5 items:
xzcat train/train.tsv.xz | head -n 5
Now let's try to evaluate some solution to this challenge. Let's fetch it:
git fetch git://gonito.net/sentiment-by-emoticons submission-01865
git reset --hard FECH_HEAD
and now run geval:
geval -t dev-0
(You need to run `dev-0` test as the expected results for the `test-A`
test is hidden from you.) The evaluation result is 0.47481. This might
be hard to interpret, so you could try other metrics.
geval -t dev-0 --metric Accuracy --metric Likelihood
So now you can see that the accuracy is over 78% and the likelihood
(i.e. geometric mean of probabilities of the correct classes) is 0.62.
2018-06-12 09:10:11 +02:00
2015-08-25 21:26:51 +02:00
## Preparing a Gonito challenge
### Directory structure of a Gonito challenge
2015-08-25 16:44:53 +02:00
2015-12-20 19:18:02 +01:00
A definition of a [Gonito](http://gonito.net) challenge should be put in a separate
2015-08-27 07:36:02 +02:00
directory. Such a directory should
2015-08-25 16:44:53 +02:00
have the following structure:
2015-08-27 21:42:28 +02:00
* `README.md` — description of a challenge in Markdown, the first header
will be used as the challenge title, the first paragraph — as its short
description
2015-08-25 16:44:53 +02:00
* `config.txt` — simple configuration file with options the same as
the ones accepted by `geval` binary (see below), usually just a
metric is specified here (e.g. `--metric BLEU`), also non-default
file names could be given here (e.g. `--test-name test-B` for a
non-standard test subdirectory)
* `train/` — subdirectory with training data (if training data are
supplied for a given Gonito challenge at all)
2015-08-27 07:36:02 +02:00
* `train/train.tsv` — the usual name of the training data file (this
name is not required and could be more than one file), the first
column is the target (predicted) value, the other columns represent
features, no header is assumed
2015-08-25 16:44:53 +02:00
* `dev-0/` — subdirectory with a development set (a sample test set,
which won't be used for the final evaluation)
* `dev-0/in.tsv` — input data (the same format as `train/train.tsv`,
but without the first column)
* `dev-0/expected.tsv` — values to be guessed (note that `paste
dev-0/expected.tsv dev-0/in.tsv` should give the same format as
`train/train.tsv`)
* `dev-1/`, `dev-2`, ... — other dev sets (if supplied)
* `test-A/` — subdirectory with the test set
* `test-A/in.tsv` — test input (the same format as `dev-0/in.tsv`)
* `test-A/expected.tsv` — values to be guessed (the same format as
2015-08-27 07:36:02 +02:00
`dev-0/expected.tsv`), note that this file should be “hidden” by the
organisers of a Gonito challenge, see notes on the structure of
2015-08-25 16:44:53 +02:00
commits below
* `test-B`, `test-C`, ... — other alternative test sets (if supplied)
2015-08-25 21:26:51 +02:00
### Initiating a Gonito challenge with geval
2015-12-20 19:18:02 +01:00
You can use `geval` to initiate a [Gonito](http://gonito.net) challenge:
2015-08-25 21:26:51 +02:00
2015-08-25 22:14:36 +02:00
geval --init --expected-directory my-challenge
2015-08-25 21:26:51 +02:00
2015-08-27 07:36:02 +02:00
(This will generate a sample toy challenge about guessing planet masses).
2015-08-25 21:26:51 +02:00
2015-08-27 07:36:02 +02:00
A metric (other than the default `RMSE` — root-mean-square error) can
be given to generate another type of toy challenge:
2015-08-25 21:26:51 +02:00
2015-08-27 08:05:09 +02:00
geval --init --expected-directory my-machine-translation-challenge --metric BLEU
2015-08-25 22:14:36 +02:00
### Preparing a Git repository
2015-12-20 19:18:02 +01:00
[Gonito](http://gonito.net) platform expects a Git repository with a challenge to be
2015-08-25 22:14:36 +02:00
submitted. The suggested way to do this is as follows:
1. Prepare a branch with all the files _without_
`test-A/expected.tsv`. This branch will be cloned by people taking
up the challenge.
2. Prepare a separate branch (or even a repo) with
`test-A/expected.tsv` added. This branch should be accessible by
2015-08-27 07:36:02 +02:00
Gonito platform, but should be kept “hidden” for regular users (or
2015-08-25 22:14:36 +02:00
at least they should be kindly asked not to peek there). It is
2015-08-27 07:36:02 +02:00
recommended (though not obligatory) that this branch contain all
the source codes and data used to generate the train/dev/test sets.
(Use [git-annex](https://git-annex.branchable.com/) if you have really big files there.)
2015-08-25 22:14:36 +02:00
Branch (1) should be the parent of the branch (2), for instance, the
2015-08-27 07:36:02 +02:00
repo (for the toy “planets” challenge) could be created as follows:
2015-08-25 22:14:36 +02:00
geval --init --expected-directory planets
cd planets
git init
git add .gitignore config.txt README.md train/train.tsv dev-0/{in,expected}.tsv test-A/in.tsv
git commit -m 'init challenge'
2015-12-20 18:10:20 +01:00
git remote add origin ssh://gitolite@gonito.net/filipg/planets
2015-08-25 22:14:36 +02:00
git push origin master
2015-10-27 12:56:17 +01:00
git branch dont-peek
git checkout dont-peek
2015-08-25 22:14:36 +02:00
git add test-A/expected.tsv
git commit -m 'with expected results'
2015-10-27 12:56:17 +01:00
git push origin dont-peek
2015-08-25 22:14:36 +02:00
## Taking up a Gonito challenge
2015-12-20 19:18:02 +01:00
Clone the repo with a challenge, as given on the [Gonito](http://gonito.net) web-site, e.g.
2015-08-27 07:36:02 +02:00
for the toy “planets” challenge (as generated with `geval --init`):
2015-08-25 22:14:36 +02:00
2015-12-20 18:10:20 +01:00
git clone git://gonito.net/planets
2015-08-25 22:14:36 +02:00
Now use the train data and whatever machine learning tools you like to
guess the values for the dev set and the test set, put them,
respectively, as:
* `dev-0/out.tsv`
* `test-A/out.tsv`
(These files must have exactly the same number of lines as,
2015-08-27 07:36:02 +02:00
respectively, `dev-0/in.tsv` and `test-0/in.tsv`. They should contain
only the predicted values.)
2015-08-25 22:14:36 +02:00
Check the result for the dev set with `geval`:
geval --test-name dev-0
(the current directory is assumed for `--out-directory` and `--expected-directory`).
If you'd like and if you have access to the test set results, you can
2015-08-27 07:36:02 +02:00
“cheat” and check the results for the test set:
2015-08-25 22:14:36 +02:00
cd ..
2015-12-20 18:10:20 +01:00
git clone git://gonito.net/planets planets-secret --branch dont-peek
2015-08-25 22:14:36 +02:00
cd planets
geval --expected-directory ../planets-secret
### Uploading your results to Gonito platform
2015-08-27 07:36:02 +02:00
Uploading is via Git — commit your “out” files and push the commit to
2015-12-20 19:18:02 +01:00
your own repo. On [Gonito](http://gonito.net) you are encouraged to share your code, so
2015-08-27 07:36:02 +02:00
be nice and commit also your source codes.
2015-08-25 22:14:36 +02:00
2015-12-20 18:10:20 +01:00
git remote add mine git@github.com/johnsmith/planets-johnsmith
2015-08-25 22:14:36 +02:00
git add {dev-0,test-A}/out.tsv
2015-08-27 07:36:02 +02:00
git add Makefile magic-bullet.py ... # whatever scripts/source codes you have
2015-08-25 22:14:36 +02:00
git commit -m 'my solution to the challenge'
git push mine master
Then let Gonito pull them and evaluate your results.
2015-08-27 08:05:09 +02:00
## `geval` options
2018-06-12 08:29:24 +02:00
```
2018-09-01 14:43:35 +02:00
geval - stand-alone evaluation tool for tests in Gonito platform
Usage: geval ([--init] | [-v|--version] | [-l|--line-by-line] |
[-w|--worst-features] | [-d|--diff OTHER-OUT] |
[-m|--most-worsening-features ARG] | [-j|--just-tokenize] |
[-S|--submit]) ([-s|--sort] | [-r|--reverse-sort])
[--out-directory OUT-DIRECTORY]
2018-06-11 21:29:39 +02:00
[--expected-directory EXPECTED-DIRECTORY] [-t|--test-name NAME]
[-o|--out-file OUT] [-e|--expected-file EXPECTED]
[-i|--input-file INPUT] [-a|--alt-metric METRIC]
[-m|--metric METRIC] [-p|--precision NUMBER-OF-FRACTIONAL-DIGITS]
2018-09-01 14:43:35 +02:00
[-T|--tokenizer TOKENIZER] [--gonito-host GONITO_HOST]
[--token TOKEN]
2018-06-11 21:29:39 +02:00
Run evaluation for tests in Gonito platform
Available options:
-h,--help Show this help text
--init Init a sample Gonito challenge rather than run an
evaluation
2018-09-01 14:43:35 +02:00
-v,--version Print GEval version
2018-06-11 21:29:39 +02:00
-l,--line-by-line Give scores for each line rather than the whole test
set
2018-09-01 14:43:35 +02:00
-w,--worst-features Print a ranking of worst features, i.e. features that
worsen the score significantly. Features are sorted
using p-value for Mann-Whitney U test comparing the
items with a given feature and without it. For each
feature the number of occurrences, average score and
p-value is given.
-d,--diff OTHER-OUT Compare results of evaluations (line by line) for two
outputs.
-m,--most-worsening-features ARG
Print a ranking of the "most worsening" features,
i.e. features that worsen the score the most when
comparing outputs from two systems.
-j,--just-tokenize Just tokenise standard input and print out the tokens
(separated by spaces) on the standard output. rather
than do any evaluation. The --tokenizer option must
be given.
-S,--submit Submit current solution for evalution to an external
Gonito instance specified with --gonito-host option.
Optionally, specify --token.
2018-06-11 21:29:39 +02:00
-s,--sort When in line-by-line or diff mode, sort the results
from the worst to the best
-r,--reverse-sort When in line-by-line or diff mode, sort the results
from the best to the worst
--out-directory OUT-DIRECTORY
Directory with test results to be
evaluated (default: ".")
--expected-directory EXPECTED-DIRECTORY
Directory with expected test results (the same as
OUT-DIRECTORY, if not given)
-t,--test-name NAME Test name (i.e. subdirectory with results or expected
results) (default: "test-A")
-o,--out-file OUT The name of the file to be
evaluated (default: "out.tsv")
-e,--expected-file EXPECTED
The name of the file with expected
results (default: "expected.tsv")
-i,--input-file INPUT The name of the file with the input (applicable only
for some metrics) (default: "in.tsv")
-a,--alt-metric METRIC Alternative metric (overrides --metric option)
-m,--metric METRIC Metric to be used - RMSE, MSE, Accuracy, LogLoss,
Likelihood, F-measure (specify as F1, F2, F0.25,
2018-09-01 14:43:35 +02:00
etc.), multi-label F-measure (specify as
MultiLabel-F1, MultiLabel-F2, MultiLabel-F0.25,
2018-06-11 21:29:39 +02:00
etc.), MAP, BLEU, NMI, ClippEU, LogLossHashed,
LikelihoodHashed, BIO-F1, BIO-F1-Labels or CharMatch
-p,--precision NUMBER-OF-FRACTIONAL-DIGITS
Arithmetic precision, i.e. the number of fractional
digits to be shown
2018-09-01 14:43:35 +02:00
-T,--tokenizer TOKENIZER Tokenizer on expected and actual output before
running evaluation (makes sense mostly for metrics
such BLEU), minimalistic, 13a and v14 tokenizers are
implemented so far. Will be also used for tokenizing
text into features when in --worst-features and
--most-worsening-features modes.
--gonito-host GONITO_HOST
Submit ONLY: Gonito instance location.
--token TOKEN Submit ONLY: Token for authorization with Gonito
instance.
2018-06-12 08:29:24 +02:00
```
2015-08-27 08:22:48 +02:00
If you need another metric, let me know, or do it yourself!
2015-12-20 19:18:02 +01:00
## Licence
Apache License 2.0
## Authors
Filip Graliński
2018-09-01 14:43:35 +02:00
## Contributors
Piotr Halama