├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── input └── README.md ├── model.py └── train.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/Bytedance_ICME2019_challenge_baseline/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/Bytedance_ICME2019_challenge_baseline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/Bytedance_ICME2019_challenge_baseline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/Bytedance_ICME2019_challenge_baseline/HEAD/README.md -------------------------------------------------------------------------------- /input/README.md: -------------------------------------------------------------------------------- 1 | # 数据解压后放在这个文件夹内 -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/Bytedance_ICME2019_challenge_baseline/HEAD/model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/Bytedance_ICME2019_challenge_baseline/HEAD/train.py --------------------------------------------------------------------------------