gitextract_vmd1djyc/ ├── .github/ │ └── workflows/ │ └── python-app.yml ├── .gitignore ├── AUTHORS ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples/ │ ├── __init__.py │ ├── gaussian_mixture.py │ ├── gbm.py │ ├── kmeans.py │ ├── linear_models.py │ ├── naive_bayes.py │ ├── nearest_neighbors.py │ ├── nnet_convnet_mnist.py │ ├── nnet_mlp.py │ ├── nnet_rnn_binary_add.py │ ├── nnet_rnn_text_generation.py │ ├── pca.py │ ├── random_forest.py │ ├── rbm.py │ ├── rl_deep_q_learning.py │ ├── svm.py │ └── t-sne.py ├── mla/ │ ├── __init__.py │ ├── base/ │ │ ├── __init__.py │ │ └── base.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── base.py │ │ └── data/ │ │ ├── mnist/ │ │ │ ├── t10k-images-idx3-ubyte │ │ │ ├── t10k-labels-idx1-ubyte │ │ │ ├── train-images-idx3-ubyte │ │ │ └── train-labels-idx1-ubyte │ │ └── nietzsche.txt │ ├── ensemble/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── gbm.py │ │ ├── random_forest.py │ │ └── tree.py │ ├── fm.py │ ├── gaussian_mixture.py │ ├── kmeans.py │ ├── knn.py │ ├── linear_models.py │ ├── metrics/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── distance.py │ │ ├── metrics.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_metrics.py │ ├── naive_bayes.py │ ├── neuralnet/ │ │ ├── __init__.py │ │ ├── activations.py │ │ ├── constraints.py │ │ ├── initializations.py │ │ ├── layers/ │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ ├── convnet.py │ │ │ ├── normalization.py │ │ │ └── recurrent/ │ │ │ ├── __init__.py │ │ │ ├── lstm.py │ │ │ └── rnn.py │ │ ├── loss.py │ │ ├── nnet.py │ │ ├── optimizers.py │ │ ├── parameters.py │ │ ├── regularizers.py │ │ └── tests/ │ │ ├── test_activations.py │ │ └── test_optimizers.py │ ├── pca.py │ ├── rbm.py │ ├── rl/ │ │ ├── __init__.py │ │ └── dqn.py │ ├── svm/ │ │ ├── __init__.py │ │ ├── kernerls.py │ │ └── svm.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_classification_accuracy.py │ │ ├── test_reduction.py │ │ └── test_regression_accuracy.py │ ├── tsne.py │ └── utils/ │ ├── __init__.py │ └── main.py ├── requirements.txt ├── setup.cfg └── setup.py