gitextract_tt3m6fwi/ ├── .gitignore ├── README.md ├── common/ │ ├── __init__.py │ ├── instance.py │ └── sentence.py ├── config/ │ ├── __init__.py │ ├── config.py │ ├── eval.py │ ├── reader.py │ └── utils.py ├── dataset/ │ ├── BC5CDR/ │ │ ├── dev.txt │ │ ├── test.txt │ │ ├── train.txt │ │ ├── train_20.txt │ │ └── trigger_20.txt │ ├── CONLL/ │ │ ├── dev.txt │ │ ├── test.txt │ │ ├── train.txt │ │ ├── train_20.txt │ │ └── trigger_20.txt │ └── Laptop-reviews/ │ ├── test.txt │ ├── train.txt │ ├── train_20.txt │ ├── trigger_20.txt │ └── trigger_turk.txt ├── model/ │ ├── __init__.py │ ├── charbilstm.py │ ├── linear_crf_inferencer.py │ ├── soft_attention.py │ ├── soft_encoder.py │ ├── soft_inferencer.py │ ├── soft_inferencer_naive.py │ └── soft_matcher.py ├── naive.py ├── requirments.txt ├── semi_supervised.py ├── supervised.py └── util.py