├── .gitignore ├── README.md ├── category_id_map.py ├── config.py ├── data ├── README.md └── verify_data.py ├── data_helper.py ├── evaluate.py ├── inference.py ├── main.py ├── model.py ├── requirements.txt └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/README.md -------------------------------------------------------------------------------- /category_id_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/category_id_map.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/config.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/data/README.md -------------------------------------------------------------------------------- /data/verify_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/data/verify_data.py -------------------------------------------------------------------------------- /data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/data_helper.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/evaluate.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/inference.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | sklearn 3 | transformers>=4.0.0 -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChat-Big-Data-Challenge-2022/challenge/HEAD/util.py --------------------------------------------------------------------------------