├── .gitignore ├── README.md ├── __init__.py ├── config.py ├── data ├── addition │ ├── README.md │ ├── dev.json │ ├── test.json │ └── train.json ├── dataset.py └── origin │ ├── test_data.zip │ ├── train_data.zip │ └── train_label.zip ├── main.py ├── model ├── advTrain.py ├── layers │ ├── attention.py │ ├── encoder.py │ ├── flat.py │ ├── position.py │ └── structuredOut.py ├── model.py ├── mymodel.py └── trainer.py ├── notebook ├── data_aug_nlpcda.ipynb ├── eda.ipynb ├── paddleNLP工具.ipynb ├── regex.ipynb ├── traditional_model.ipynb └── utils │ ├── __init__.py │ └── utils.py ├── pic └── README_pic │ ├── image-20210220002044078.png │ ├── image-20210220002239064.png │ ├── image-20210220002611637.png │ ├── image-20210220002938760.png │ ├── image-20210220003140593.png │ ├── image-20210220003147807.png │ ├── image-20210220003204195.png │ ├── image-20210220003220523.png │ ├── image-20210220164737197.png │ ├── image-20210220165643972.png │ ├── image-20210220165700873.png │ ├── image-20210220165716666.png │ ├── image-20210220165933065.png │ ├── image-20210220165950494.png │ ├── image-20210220170005373.png │ ├── image-20210220170019854.png │ ├── image-20210220170032945.png │ ├── image-20210220170231288.png │ ├── image-20210220173026930.png │ ├── image-20210220173255967.png │ ├── image-20210220174003119.png │ ├── image-20210220174208145.png │ ├── image-20210220174356970.png │ ├── image-20210220174404314.png │ ├── image-20210220174417043.png │ ├── image-20210220182059909.png │ ├── image-20210314113630179.png │ └── image-20210314114018794.png ├── preprocess.py ├── push.bat ├── record_1.jpg ├── requirements.txt ├── set_env.sh └── utils ├── __init__.py ├── callbacks └── earlystop.py ├── postprocess ├── process.py └── selfsupervise.py ├── preprocess ├── __init__.py ├── format.py ├── process.py └── tokenizer.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/__init__.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/config.py -------------------------------------------------------------------------------- /data/addition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/addition/README.md -------------------------------------------------------------------------------- /data/addition/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/addition/dev.json -------------------------------------------------------------------------------- /data/addition/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/addition/test.json -------------------------------------------------------------------------------- /data/addition/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/addition/train.json -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/dataset.py -------------------------------------------------------------------------------- /data/origin/test_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/origin/test_data.zip -------------------------------------------------------------------------------- /data/origin/train_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/origin/train_data.zip -------------------------------------------------------------------------------- /data/origin/train_label.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/data/origin/train_label.zip -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/main.py -------------------------------------------------------------------------------- /model/advTrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/advTrain.py -------------------------------------------------------------------------------- /model/layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/layers/attention.py -------------------------------------------------------------------------------- /model/layers/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/layers/encoder.py -------------------------------------------------------------------------------- /model/layers/flat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/layers/flat.py -------------------------------------------------------------------------------- /model/layers/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/layers/position.py -------------------------------------------------------------------------------- /model/layers/structuredOut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/layers/structuredOut.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/model.py -------------------------------------------------------------------------------- /model/mymodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/mymodel.py -------------------------------------------------------------------------------- /model/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/model/trainer.py -------------------------------------------------------------------------------- /notebook/data_aug_nlpcda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/notebook/data_aug_nlpcda.ipynb -------------------------------------------------------------------------------- /notebook/eda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/notebook/eda.ipynb -------------------------------------------------------------------------------- /notebook/paddleNLP工具.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/notebook/paddleNLP工具.ipynb -------------------------------------------------------------------------------- /notebook/regex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/notebook/regex.ipynb -------------------------------------------------------------------------------- /notebook/traditional_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/notebook/traditional_model.ipynb -------------------------------------------------------------------------------- /notebook/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/notebook/utils/utils.py -------------------------------------------------------------------------------- /pic/README_pic/image-20210220002044078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220002044078.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220002239064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220002239064.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220002611637.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220002611637.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220002938760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220002938760.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220003140593.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220003140593.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220003147807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220003147807.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220003204195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220003204195.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220003220523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220003220523.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220164737197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220164737197.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220165643972.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220165643972.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220165700873.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220165700873.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220165716666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220165716666.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220165933065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220165933065.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220165950494.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220165950494.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220170005373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220170005373.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220170019854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220170019854.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220170032945.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220170032945.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220170231288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220170231288.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220173026930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220173026930.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220173255967.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220173255967.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220174003119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220174003119.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220174208145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220174208145.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220174356970.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220174356970.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220174404314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220174404314.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220174417043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220174417043.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210220182059909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210220182059909.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210314113630179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210314113630179.png -------------------------------------------------------------------------------- /pic/README_pic/image-20210314114018794.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/pic/README_pic/image-20210314114018794.png -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/preprocess.py -------------------------------------------------------------------------------- /push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/push.bat -------------------------------------------------------------------------------- /record_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/record_1.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/requirements.txt -------------------------------------------------------------------------------- /set_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/set_env.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/callbacks/earlystop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/callbacks/earlystop.py -------------------------------------------------------------------------------- /utils/postprocess/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/postprocess/process.py -------------------------------------------------------------------------------- /utils/postprocess/selfsupervise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/postprocess/selfsupervise.py -------------------------------------------------------------------------------- /utils/preprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/preprocess/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/preprocess/format.py -------------------------------------------------------------------------------- /utils/preprocess/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/preprocess/process.py -------------------------------------------------------------------------------- /utils/preprocess/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/preprocess/tokenizer.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RacleRay/PrivacyNER_with_NoisyData_CCF/HEAD/utils/tools.py --------------------------------------------------------------------------------