gitextract_t47luwfk/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── a--bug-performance-issue.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs/ │ ├── Makefile │ ├── README.md │ ├── conf.py │ ├── index.rst │ ├── make.bat │ ├── numpy_ml.bandits.bandits.rst │ ├── numpy_ml.bandits.policies.rst │ ├── numpy_ml.bandits.rst │ ├── numpy_ml.bandits.trainer.rst │ ├── numpy_ml.factorization.factors.rst │ ├── numpy_ml.factorization.rst │ ├── numpy_ml.gmm.gmm.rst │ ├── numpy_ml.gmm.rst │ ├── numpy_ml.hmm.MultinomialHMM.rst │ ├── numpy_ml.hmm.rst │ ├── numpy_ml.lda.lda.rst │ ├── numpy_ml.lda.rst │ ├── numpy_ml.lda.smoothed_lda.rst │ ├── numpy_ml.linear_models.lm.rst │ ├── numpy_ml.linear_models.rst │ ├── numpy_ml.neural_nets.activations.rst │ ├── numpy_ml.neural_nets.initializers.rst │ ├── numpy_ml.neural_nets.layers.rst │ ├── numpy_ml.neural_nets.losses.rst │ ├── numpy_ml.neural_nets.models.rst │ ├── numpy_ml.neural_nets.modules.rst │ ├── numpy_ml.neural_nets.optimizers.rst │ ├── numpy_ml.neural_nets.rst │ ├── numpy_ml.neural_nets.schedulers.rst │ ├── numpy_ml.neural_nets.utils.rst │ ├── numpy_ml.neural_nets.wrappers.rst │ ├── numpy_ml.ngram.additive.rst │ ├── numpy_ml.ngram.goodturing.rst │ ├── numpy_ml.ngram.mle.rst │ ├── numpy_ml.ngram.rst │ ├── numpy_ml.nonparametric.gp.rst │ ├── numpy_ml.nonparametric.kernel_regression.rst │ ├── numpy_ml.nonparametric.knn.rst │ ├── numpy_ml.nonparametric.rst │ ├── numpy_ml.preprocessing.dsp.rst │ ├── numpy_ml.preprocessing.general.rst │ ├── numpy_ml.preprocessing.nlp.rst │ ├── numpy_ml.preprocessing.rst │ ├── numpy_ml.rl_models.agents.rst │ ├── numpy_ml.rl_models.rl_utils.rst │ ├── numpy_ml.rl_models.rst │ ├── numpy_ml.rl_models.trainer.rst │ ├── numpy_ml.trees.dt.rst │ ├── numpy_ml.trees.gbdt.rst │ ├── numpy_ml.trees.losses.rst │ ├── numpy_ml.trees.rf.rst │ ├── numpy_ml.trees.rst │ ├── numpy_ml.utils.data_structures.rst │ ├── numpy_ml.utils.distance_metrics.rst │ ├── numpy_ml.utils.graphs.rst │ ├── numpy_ml.utils.kernels.rst │ ├── numpy_ml.utils.rst │ ├── numpy_ml.utils.testing.rst │ ├── numpy_ml.utils.windows.rst │ └── requirements.txt ├── numpy_ml/ │ ├── README.md │ ├── __init__.py │ ├── bandits/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bandits.py │ │ ├── policies.py │ │ └── trainer.py │ ├── factorization/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── factors.py │ ├── gmm/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── gmm.py │ ├── hmm/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── hmm.py │ ├── lda/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── lda.py │ │ └── lda_smoothed.py │ ├── linear_models/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bayesian_regression.py │ │ ├── glm.py │ │ ├── linear_regression.py │ │ ├── logistic.py │ │ ├── naive_bayes.py │ │ └── ridge.py │ ├── neural_nets/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── activations/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── activations.py │ │ ├── initializers/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── initializers.py │ │ ├── layers/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── layers.py │ │ ├── losses/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── losses.py │ │ ├── models/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── vae.py │ │ │ ├── w2v.py │ │ │ └── wgan_gp.py │ │ ├── modules/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── modules.py │ │ ├── optimizers/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── optimizers.py │ │ ├── schedulers/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── schedulers.py │ │ ├── utils/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── utils.py │ │ └── wrappers/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── wrappers.py │ ├── ngram/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── ngram.py │ ├── nonparametric/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── gp.py │ │ ├── kernel_regression.py │ │ └── knn.py │ ├── plots/ │ │ ├── bandit_plots.py │ │ ├── gmm_plots.py │ │ ├── hmm_plots.py │ │ ├── lda_plots.py │ │ ├── lm_plots.py │ │ ├── ngram_plots.py │ │ ├── nn_activations_plots.py │ │ ├── nn_schedulers_plots.py │ │ ├── nonparametric_plots.py │ │ ├── rl_plots.py │ │ └── trees_plots.py │ ├── preprocessing/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dsp.py │ │ ├── general.py │ │ └── nlp.py │ ├── rl_models/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── rl_utils.py │ │ ├── tiles/ │ │ │ ├── __init__.py │ │ │ └── tiles3.py │ │ └── trainer.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── nn_torch_models.py │ │ ├── test_glm.py │ │ ├── test_linear_regression.py │ │ ├── test_naive_bayes.py │ │ ├── test_ngram.py │ │ ├── test_nn.py │ │ ├── test_nn_activations.py │ │ ├── test_nonparametric.py │ │ ├── test_preprocessing.py │ │ ├── test_trees.py │ │ └── test_utils.py │ ├── trees/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dt.py │ │ ├── gbdt.py │ │ ├── losses.py │ │ └── rf.py │ └── utils/ │ ├── README.md │ ├── __init__.py │ ├── data_structures.py │ ├── distance_metrics.py │ ├── graphs.py │ ├── kernels.py │ ├── misc.py │ ├── testing.py │ └── windows.py ├── requirements-dev.txt ├── requirements-test.txt ├── requirements.txt ├── setup.py └── tox.ini