├── .gitignore ├── LICENSE ├── README.md ├── config └── train.yaml ├── data_load.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkl 2 | *.log 3 | *.pyc 4 | outputs/ 5 | data/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jindongwang/EasyEspnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jindongwang/EasyEspnet/HEAD/README.md -------------------------------------------------------------------------------- /config/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jindongwang/EasyEspnet/HEAD/config/train.yaml -------------------------------------------------------------------------------- /data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jindongwang/EasyEspnet/HEAD/data_load.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jindongwang/EasyEspnet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jindongwang/EasyEspnet/HEAD/utils.py --------------------------------------------------------------------------------