gitextract__rym4adj/ ├── data/ │ ├── final/ │ │ ├── mid_data/ │ │ │ ├── polarity2id.json │ │ │ ├── role2id.json │ │ │ ├── tense2id.json │ │ │ └── triggers_dict.json │ │ ├── preliminary_clean/ │ │ │ ├── role1_first.json │ │ │ ├── role1_second.json │ │ │ ├── role1_third.json │ │ │ ├── role_first.json │ │ │ ├── role_second.json │ │ │ ├── role_third.json │ │ │ ├── trigger_first.json │ │ │ ├── trigger_second.json │ │ │ ├── trigger_third.json │ │ │ └── trigger_third_new.json │ │ └── raw_data/ │ │ ├── dev.json │ │ ├── preliminary_data_pred_trigger.json │ │ ├── preliminary_data_pred_trigger_and_role.json │ │ ├── preliminary_pred_triggers_pred_roles.json │ │ ├── preliminary_stack.json │ │ ├── preliminary_stack_10fold.json │ │ ├── raw_preliminary.json │ │ ├── raw_preliminary_clean.json │ │ ├── raw_stack.json │ │ ├── raw_stack_clean.json │ │ ├── sentences.json │ │ ├── stack.json │ │ ├── submit_sample.json │ │ ├── tense.json │ │ ├── test.json │ │ └── train.json │ └── preliminary/ │ ├── mid_data/ │ │ ├── attribution2id.json │ │ ├── trigger2id.json │ │ └── triggers_dict.json │ ├── raw_data/ │ │ ├── dev.json │ │ ├── raw_stack.json │ │ ├── stack.json │ │ ├── submit_sample.csv │ │ ├── test.csv │ │ ├── test.json │ │ ├── train.csv │ │ └── train.json │ └── raw_preliminary.json ├── dev.py ├── ensemble_predict.py ├── iFLYTEKAI2020-EE-我是蛋糕王.pptx ├── predict_preliminary.py ├── readme.md ├── requirements.txt ├── script/ │ └── final/ │ ├── dev.sh │ ├── test.sh │ └── train.sh ├── src_final/ │ ├── __init__.py │ ├── preprocess/ │ │ ├── __init__.py │ │ ├── convert_raw_data.py │ │ ├── convert_raw_data_preliminary.py │ │ └── processor.py │ └── utils/ │ ├── __init__.py │ ├── attack_train_utils.py │ ├── dataset_utils.py │ ├── evaluator.py │ ├── functions_utils.py │ ├── model_utils.py │ ├── options.py │ └── trainer.py ├── submit/ │ ├── submit_v1.json │ └── submit_v1_ensemble.json ├── test.py └── train.py