Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.

Commit 793a0fd

Browse files
committed
Add Readme
1 parent 6e8b509 commit 793a0fd

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

Readme.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Training data for TASS18 Task 3
2+
3+
This repository contains the training data for the Task 3 in TASS 2018.
4+
The files and folders are organized as follows:
5+
6+
* `evaluate.py` is a Python 3 script that performs the evaluation (see [below](#evaluation)).
7+
* `gold/` contains the `input_*.txt` files and the corresponding `output_*.txt` files of the training data.
8+
* `dev/` is an empty folder where you are expected to output your corresponding `output_*.txt` files.
9+
* `example/` contains a example input and output files, with some errors purposedly included, that you can use to understand exactly how the evaluation metric works.
10+
11+
## Evaluation
12+
13+
The file `evaluate.py` performs an automatic evaluation of your output files against the gold files. You can use this script to validate your technique(s). The metrics reported are exactly the same ones that will be used in the final evaluation.
14+
15+
To run it simply use:
16+
17+
```bash
18+
python3 evaluate.py [gold-folder] [dev-folder]
19+
```
20+
21+
If the optional args `gold-folder` and `dev-folder` are provided, then the files are looked for in those folders instead of the default `gold` and `dev`. You can use these options to test different variants or to see the evaluation for the example files, by running:
22+
23+
```bash
24+
python3 evaluate.py example/gold example/dev
25+
```
26+
27+
## Notes
28+
29+
The actual training data is not ready yet. Only the trial data is included in the `gold` folder now. This repository will be updated with the actual gold training files in due time.
30+
31+
You can use the trial data to see a more complex scenario than that presented in the examples, and to begin developing your ideas until the actual training data is ready.
32+
33+
**The trial data is not expected to be part of the final evaluation, just use it for your convenience now**.

0 commit comments

Comments
 (0)