All Projects → rougier → Ml Recipes

rougier / Ml Recipes

Licence: bsd-2-clause
A collection of stand-alone Python machine learning recipes

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Ml Recipes

Base Components Recipes
A collection of base component recipes for Lightning Web Components on Salesforce Platform
Stars: ✭ 293 (+104.9%)
Mutual labels:  recipes
Ramda Adjunct
Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
Stars: ✭ 550 (+284.62%)
Mutual labels:  recipes
Ex Navigation Recipes
The idea is to provide a list of useful snippets for ex-navigation
Stars: ✭ 65 (-54.55%)
Mutual labels:  recipes
The Bread Code
Learn how to master the art of baking the programmer way.
Stars: ✭ 3,744 (+2518.18%)
Mutual labels:  recipes
Recipes Contrib
Symfony Contrib Recipes Repositories
Stars: ✭ 399 (+179.02%)
Mutual labels:  recipes
Recipes
Django application for managing recipes
Stars: ✭ 695 (+386.01%)
Mutual labels:  recipes
Echox
Echo cookbook and website
Stars: ✭ 275 (+92.31%)
Mutual labels:  recipes
Homebysix Recipes
AutoPkg recipes all the way from Seattle, WA.
Stars: ✭ 105 (-26.57%)
Mutual labels:  recipes
Food Recipe Cnn
food image to recipe with deep convolutional neural networks.
Stars: ✭ 448 (+213.29%)
Mutual labels:  recipes
Vegan recipes
100% vegan recipes
Stars: ✭ 46 (-67.83%)
Mutual labels:  recipes
Reason Design Patterns
🗺 An unofficial collection of "design patterns" for Reason and OCaml
Stars: ✭ 379 (+165.03%)
Mutual labels:  recipes
Recipes App React Native
Recipes App in React Native
Stars: ✭ 386 (+169.93%)
Mutual labels:  recipes
Recipes
Symfony Recipes Repository
Stars: ✭ 724 (+406.29%)
Mutual labels:  recipes
Boost Cookbook
Online examples from "Boost C++ Application Development Cookbook":
Stars: ✭ 306 (+113.99%)
Mutual labels:  recipes
Cocoa Biscuit Cake With Marshmallow Cheese Creme
Yes. It's a recipe. For a cake. Sort of.
Stars: ✭ 77 (-46.15%)
Mutual labels:  recipes
Plugins
Official Franz Plugin Repository
Stars: ✭ 284 (+98.6%)
Mutual labels:  recipes
Recipe
Collection of PHP Functions
Stars: ✭ 666 (+365.73%)
Mutual labels:  recipes
Meanrecipe
Get a consensus recipe for your next meal. 🍪 🍰
Stars: ✭ 140 (-2.1%)
Mutual labels:  recipes
React Recipes
React Recipes & Patterns.
Stars: ✭ 86 (-39.86%)
Mutual labels:  recipes
Recipes
A super minimal recipe website built on Markdown
Stars: ✭ 38 (-73.43%)
Mutual labels:  recipes

Machine Learning Recipes

This is a collection of stand-alone Python examples of machine learning algorithms. Run a specific recipe to see usage and result. Feel free to contribute an example (recipe should be reasonably small, including usage).

Multi-armed bandit (MAB)

  • Epsilon greedy (recipes/MAB/greedy.py)

    Sutton, Richard S., Barto, Andrew G. "Reinforcement Learning: An Introduction", MIT Press, Cambridge, MA (1998).

  • Softmax (recipes/MAB/softmax.py)

    Luce, R. Duncan. (1963). "Detection and recognition". In Luce, R. Duncan, Bush, Robert. R. & Galanter, Eugene (Eds.), "Handbook of mathematical psychology" (Vol. 1), New York: Wiley.

  • Thompson sampling (recipes/MAB/thompson.py)

    Thompson, William R. On the likelihood that one unknown probability exceeds another in view of the evidence of two samples. Biometrika, 25(3–4):285–294, 1933. DOI: 10.2307/2332286

  • Upper Confidence Bound (recipes/MAB/ucb.py)

    Lai, T.L and Robbins, Herbert, "Asymptotically efficient adaptive allocation rules", Advances in Applied Mathematics 6:1, (1985) DOI: 10.1016/0196-8858(85)90002-8

Artificial Neural Network (ANN)

  • Adaptive Resonance Theory (recipes/ANN/art.py)

    Grossberg, Stephen (1987). Competitive learning: From interactive activation to adaptive resonance, Cognitive Science, 11, 23-63.

  • Echo State Network (recipes/ANN/esn.py)

    Jaeger, Herbert (2001) The "echo state" approach to analysing and training recurrent neural networks. GMD Report 148, GMD - German National Research Institute for Computer Science.

  • Simple Recurrent Network (recipes/ANN/srn.py)

    Elman, Jeffrey L. (1990). Finding structure in time. Cognitive Science, 14:179–211.

  • Long Short Term Memory (nicodjimenez/lstm)

    Hochreiter, Sepp and Schmidhuber, Jürgen (1997) Long Short-Term Memory, Neural Computation Vol. 9, 1735-1780

  • Multi-Layer Perceptron (recipes/ANN/mlp.py)

    Rumelhart, David E., Hinton, Geoffrey E. and Williams, Ronald J. "Learning Internal Representations by Error Propagation". Rumelhart, David E., McClelland, James L., and the PDP research group. (editors), Parallel distributed processing: Explorations in the microstructure of cognition, Volume 1: Foundation. MIT Press, 1986.

  • Perceptron (recipes/ANN/perceptron.py)

    Rosenblatt, Frank (1958), "The Perceptron: A Probabilistic Model for Information Storage and Organization in the Brain", Cornell Aeronautical Laboratory, Psychological Review, v65, No. 6, pp. 386–408. DOI:10.1037/h0042519

  • Kernel perceptron (recipes/ANN/kernel-perceptron.py)

    Aizerman, M. A., Braverman, E. A. and Rozonoer, L.. " Theoretical foundations of the potential function method in pattern recognition learning.." Paper presented at the meeting of the Automation and Remote Control,, 1964.

  • Voted Perceptron (recipes/ANN/voted-perceptron.py)

    Y. Freund, R. E. Schapire. "Large margin classification using the perceptron algorithm". In: 11th Annual Conference on Computational Learning Theory, New York, NY, 209-217, 1998. DOI:10.1023/A:1007662407062

  • Self Organizing Map (recipes/ANN/som.py)

    Kohonen, Teuvo. Self-Organization and Associative Memory. Springer, Berlin, 1984.

Markov Decision Process (MDP)

Dimensionality Reduction (DR)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].