Python evaluation scripts for AIDA-formatted CoNLL NER data
Assumes that python
is installed on your system
git clone https://github.com/benhachey/conll03_nel_eval
cd conll03_nel_eval
./cne prepare \
-k ".*testb.*" \
-m mappings/map-testb-fromapi-20140227.tsv \
/path/to/AIDA-YAGO2-dataset.tsv \
> gold.txt
./cne prepare \
-k ".*testb.*" \
-m mappings/map-testb-fromapi-20140227.tsv \
/path/to/system.txt \
> system.txt
./cne evaluate \
-g gold.txt \
system.txt
See project wiki for details.