gitextract_hyg6huh5/ ├── .gitattributes ├── README.md ├── analysis_result.ipynb ├── bert-base-chinese/ │ ├── .ipynb_checkpoints/ │ │ └── get_unk_word-checkpoint.ipynb │ └── vocab.txt ├── config.py ├── data/ │ ├── Data.py │ ├── __init__.py │ └── small/ │ ├── json_data/ │ │ ├── .ipynb_checkpoints/ │ │ │ └── tag2id_id2tag-checkpoint.ipynb │ │ ├── id2r.json │ │ ├── id2tag.json │ │ ├── id2type.json │ │ ├── r2id.json │ │ ├── tag2id.json │ │ ├── type2id.json │ │ └── type2types.json │ └── origin_data/ │ ├── all_50_schemas_new │ ├── all_50_schemas_old │ ├── 切词测试.ipynb │ └── 统计实体类别数目.ipynb ├── helpData.py ├── main.py ├── metrics.py ├── models/ │ ├── BERT_CNN_CRF.py │ ├── BERT_MUL_CNN.py │ ├── BasicModule.py │ └── __init__.py ├── modules/ │ ├── Attention层实现方式.pptx │ ├── __init__.py │ ├── attenter.py │ ├── embedder.py │ └── encoder.py └── utils.py