├── .gitignore ├── LICENSE.md ├── README.md ├── img ├── Ball3500.png ├── GTZAN3500.png └── us8k3500.png └── src ├── config_file.py ├── datasets.py ├── dl_models.py ├── elm.py ├── main.py └── random_layer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/README.md -------------------------------------------------------------------------------- /img/Ball3500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/img/Ball3500.png -------------------------------------------------------------------------------- /img/GTZAN3500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/img/GTZAN3500.png -------------------------------------------------------------------------------- /img/us8k3500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/img/us8k3500.png -------------------------------------------------------------------------------- /src/config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/src/config_file.py -------------------------------------------------------------------------------- /src/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/src/datasets.py -------------------------------------------------------------------------------- /src/dl_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/src/dl_models.py -------------------------------------------------------------------------------- /src/elm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/src/elm.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/src/main.py -------------------------------------------------------------------------------- /src/random_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordipons/elmarc/HEAD/src/random_layer.py --------------------------------------------------------------------------------