├── .gitignore ├── LICENSE ├── README.md ├── USER_DIR ├── __init__.py ├── librispeech_specaugment.py └── speech_recognition.py ├── loss.png ├── no_WER.png └── spec_WER.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/README.md -------------------------------------------------------------------------------- /USER_DIR/__init__.py: -------------------------------------------------------------------------------- 1 | from . import librispeech_specaugment -------------------------------------------------------------------------------- /USER_DIR/librispeech_specaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/USER_DIR/librispeech_specaugment.py -------------------------------------------------------------------------------- /USER_DIR/speech_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/USER_DIR/speech_recognition.py -------------------------------------------------------------------------------- /loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/loss.png -------------------------------------------------------------------------------- /no_WER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/no_WER.png -------------------------------------------------------------------------------- /spec_WER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/specAugment/HEAD/spec_WER.png --------------------------------------------------------------------------------