├── test.py ├── test ├── no │ └── no.txt └── yes │ └── yes.txt ├── train.py ├── train ├── no │ └── no.txt └── yes │ └── yes.txt └── validation ├── no └── no.txt └── yes └── yes.txt /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockstarcoder333/Drum-Classification/HEAD/test.py -------------------------------------------------------------------------------- /test/no/no.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/yes/yes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockstarcoder333/Drum-Classification/HEAD/train.py -------------------------------------------------------------------------------- /train/no/no.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train/yes/yes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation/no/no.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation/yes/yes.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------