I attempted to replicate a Named Entity Recognition (NER) experiment but encountered several issues during the process.
Firstly, when executing the command python slue_toolkit/prepare/prepare_voxpopuli_nel.py create_manifest to generate manifest files, I noticed that the dev.tsv, fine-tune.tsv, and test.tsv files were merely symbolic links. They were unusable for running the end-to-end NER model. To resolve this, I had to manually copy dev.tsv and fine-tune.tsv from slue-toolkit/manifest/slue-voxpopuli into the e2e_ner directory.
Additionally, I faced a problem while performing evaluations with the command bash baselines/ner/e2e_scripts/eval-ner.sh w2v2-base test combined nolm. It appears that the processed test files are missing. Could you provide guidance on how to properly prepare these files for evaluation?
I attempted to replicate a Named Entity Recognition (NER) experiment but encountered several issues during the process.
Firstly, when executing the command
python slue_toolkit/prepare/prepare_voxpopuli_nel.py create_manifestto generate manifest files, I noticed that thedev.tsv,fine-tune.tsv, andtest.tsvfiles were merely symbolic links. They were unusable for running the end-to-end NER model. To resolve this, I had to manually copydev.tsvandfine-tune.tsvfromslue-toolkit/manifest/slue-voxpopuliinto thee2e_nerdirectory.Additionally, I faced a problem while performing evaluations with the command
bash baselines/ner/e2e_scripts/eval-ner.sh w2v2-base test combined nolm. It appears that the processed test files are missing. Could you provide guidance on how to properly prepare these files for evaluation?