├── .gitignore ├── README.md ├── 互联网新闻情感分析 ├── README.md └── share │ ├── LICENSE │ ├── README.md │ ├── backup-models │ └── readme │ ├── combine.py │ ├── ensemble_submits │ ├── ensemble.py │ └── main.py │ ├── final_changed.py │ ├── hubconf.py │ ├── hubconfs │ ├── bert_hubconf.py │ ├── gpt2_hubconf.py │ ├── gpt_hubconf.py │ ├── transformer_xl_hubconf.py │ ├── xlm_hubconf.py │ └── xlnet_hubconf.1.py │ ├── pretrained_model │ └── readme.txt │ ├── pytorch_transformers │ ├── __init__.py │ ├── __main__.py │ ├── convert_gpt2_checkpoint_to_pytorch.py │ ├── convert_openai_checkpoint_to_pytorch.py │ ├── convert_pytorch_checkpoint_to_tf.py │ ├── convert_roberta_checkpoint_to_pytorch.py │ ├── convert_tf_checkpoint_to_pytorch.py │ ├── convert_transfo_xl_checkpoint_to_pytorch.py │ ├── convert_xlm_checkpoint_to_pytorch.py │ ├── convert_xlnet_checkpoint_to_pytorch.py │ ├── file_utils.py │ ├── modeling_auto.py │ ├── modeling_bert.py │ ├── modeling_gpt2.py │ ├── modeling_openai.py │ ├── modeling_roberta.py │ ├── modeling_transfo_xl.py │ ├── modeling_transfo_xl_utilities.py │ ├── modeling_utils.py │ ├── modeling_xlm.py │ ├── modeling_xlnet.py │ ├── optimization.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── fixtures │ │ │ ├── input.txt │ │ │ ├── sample_text.txt │ │ │ └── test_sentencepiece.model │ │ ├── modeling_auto_test.py │ │ ├── modeling_bert_test.py │ │ ├── modeling_common_test.py │ │ ├── modeling_gpt2_test.py │ │ ├── modeling_openai_test.py │ │ ├── modeling_roberta_test.py │ │ ├── modeling_transfo_xl_test.py │ │ ├── modeling_xlm_test.py │ │ ├── modeling_xlnet_test.py │ │ ├── optimization_test.py │ │ ├── tokenization_auto_test.py │ │ ├── tokenization_bert_test.py │ │ ├── tokenization_gpt2_test.py │ │ ├── tokenization_openai_test.py │ │ ├── tokenization_roberta_test.py │ │ ├── tokenization_tests_commons.py │ │ ├── tokenization_transfo_xl_test.py │ │ ├── tokenization_utils_test.py │ │ ├── tokenization_xlm_test.py │ │ └── tokenization_xlnet_test.py │ ├── tokenization_auto.py │ ├── tokenization_bert.py │ ├── tokenization_gpt2.py │ ├── tokenization_openai.py │ ├── tokenization_roberta.py │ ├── tokenization_transfo_xl.py │ ├── tokenization_utils.py │ ├── tokenization_xlm.py │ └── tokenization_xlnet.py │ ├── requirements.txt │ ├── run_bert.py │ ├── run_bert.sh │ ├── run_bert_wwm_ext.sh │ ├── run_roberta.sh │ ├── run_roberta_wwm_ext.sh │ ├── run_xlnet.py │ ├── run_xlnet.sh │ └── setup.py ├── 消费者人群画像—信用智能评分 └── src │ └── analyze.ipynb ├── 疫情期间互联网虚假新闻检测 ├── README.md └── src │ ├── analyze.ipynb │ ├── conf │ ├── config.py │ └── model_config_bert.py │ ├── main.py │ ├── model │ └── bert.py │ └── utils │ ├── bert_data_utils.py │ ├── model_utils.py │ └── utils.py └── 疫情期间网民情绪识别 ├── README.md └── src ├── README.md ├── analyze.ipynb ├── conf ├── config.py └── model_config_bert.py ├── main.py ├── model └── bert.py ├── predict.py └── utils ├── bert_data_utils.py ├── data_utils.py ├── model_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | **/.ipynb_checkpoints 3 | **/__pycache__ 4 | **/data 5 | 疫情政务问答助手 6 | 重点区域人群密度预测 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/README.md -------------------------------------------------------------------------------- /互联网新闻情感分析/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/README.md -------------------------------------------------------------------------------- /互联网新闻情感分析/share/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/LICENSE -------------------------------------------------------------------------------- /互联网新闻情感分析/share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/README.md -------------------------------------------------------------------------------- /互联网新闻情感分析/share/backup-models/readme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /互联网新闻情感分析/share/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/combine.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/ensemble_submits/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/ensemble_submits/ensemble.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/ensemble_submits/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/ensemble_submits/main.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/final_changed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/final_changed.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconfs/bert_hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconfs/bert_hubconf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconfs/gpt2_hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconfs/gpt2_hubconf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconfs/gpt_hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconfs/gpt_hubconf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconfs/transformer_xl_hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconfs/transformer_xl_hubconf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconfs/xlm_hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconfs/xlm_hubconf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/hubconfs/xlnet_hubconf.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/hubconfs/xlnet_hubconf.1.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pretrained_model/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/__init__.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/__main__.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_gpt2_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_gpt2_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_openai_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_openai_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_pytorch_checkpoint_to_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_pytorch_checkpoint_to_tf.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_roberta_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_roberta_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_tf_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_tf_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_transfo_xl_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_transfo_xl_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_xlm_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_xlm_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/convert_xlnet_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/convert_xlnet_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/file_utils.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_auto.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_bert.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_gpt2.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_openai.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_roberta.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_transfo_xl.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_transfo_xl_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_transfo_xl_utilities.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_utils.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_xlm.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/modeling_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/modeling_xlnet.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/optimization.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/conftest.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/fixtures/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/fixtures/input.txt -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/fixtures/sample_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/fixtures/sample_text.txt -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/fixtures/test_sentencepiece.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/fixtures/test_sentencepiece.model -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_auto_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_auto_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_bert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_bert_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_common_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_gpt2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_gpt2_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_openai_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_openai_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_roberta_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_roberta_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_transfo_xl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_transfo_xl_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_xlm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_xlm_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/modeling_xlnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/modeling_xlnet_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/optimization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/optimization_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_auto_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_auto_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_bert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_bert_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_gpt2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_gpt2_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_openai_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_openai_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_roberta_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_roberta_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_tests_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_tests_commons.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_transfo_xl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_transfo_xl_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_utils_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_xlm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_xlm_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_xlnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tests/tokenization_xlnet_test.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_auto.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_bert.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_gpt2.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_openai.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_roberta.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_transfo_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_transfo_xl.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_utils.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_xlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_xlm.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/pytorch_transformers/tokenization_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/pytorch_transformers/tokenization_xlnet.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/requirements.txt -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_bert.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_bert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_bert.sh -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_bert_wwm_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_bert_wwm_ext.sh -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_roberta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_roberta.sh -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_roberta_wwm_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_roberta_wwm_ext.sh -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_xlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_xlnet.py -------------------------------------------------------------------------------- /互联网新闻情感分析/share/run_xlnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/run_xlnet.sh -------------------------------------------------------------------------------- /互联网新闻情感分析/share/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/互联网新闻情感分析/share/setup.py -------------------------------------------------------------------------------- /消费者人群画像—信用智能评分/src/analyze.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/消费者人群画像—信用智能评分/src/analyze.ipynb -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/README.md -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/analyze.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/analyze.ipynb -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/conf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/conf/config.py -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/conf/model_config_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/conf/model_config_bert.py -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/main.py -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/model/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/model/bert.py -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/utils/bert_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/utils/bert_data_utils.py -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/utils/model_utils.py -------------------------------------------------------------------------------- /疫情期间互联网虚假新闻检测/src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间互联网虚假新闻检测/src/utils/utils.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/README.md -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/analyze.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/analyze.ipynb -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/conf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/conf/config.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/conf/model_config_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/conf/model_config_bert.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/main.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/model/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/model/bert.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/predict.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/utils/bert_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/utils/bert_data_utils.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/utils/data_utils.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/utils/model_utils.py -------------------------------------------------------------------------------- /疫情期间网民情绪识别/src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yphacker/datafountain/HEAD/疫情期间网民情绪识别/src/utils/utils.py --------------------------------------------------------------------------------