- python==3.7.4
- pytorch==1.8.1
- huggingface transformers
- numpy
- tqdm
├── root
│ └── dataset
│ ├── conll2003_train.json
│ ├── conll2003_tag_to_id.json
│ ├── politics_train.json
│ ├── politics_dev.json
│ ├── politics_test.json
│ ├── politics_tag_to_id.json
│ └── ...
│ └── models
│ ├── __init__.py
│ ├── modeling_span.py
│ └── modeling_type.py
│ └── utils
│ ├── __init__.py
│ ├── config.py
│ ├── data_utils.py
│ ├── eval.py
│ └── ...
│ └── ptms
│ └── ... (trained results, e.g., saved models, log file)
│ └── cached_models
│ └── ... (BERT pretrained model, which will be downloaded automatically)
│ └── run_script.py
│ └── run_script.sh
sh run_script.sh <GPU ID> <DATASET NAME> <span tau> <type tau> <mu>
e.g., in the music domain
sh run_script.sh 0 music 0.1 0.1 1.0