Skip to content
forked from Riroaki/LemonML

๐Ÿ‹่‡ชๅˆถๆœบๅ™จๅญฆไน ็ฎ—ๆณ•ๅบ“๐Ÿ‹

License

Notifications You must be signed in to change notification settings

bee7171/LemonML

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

34 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ‹Lemon๐Ÿ‹

Basic Machine Learning / Deep Learning Library

Implemented with numpy and scipy in python codes.

For more information, please refer to my blog

Requirements

  • python==3.6.8
  • numpy==1.17.0
  • scipy==1.2.1

Structure

.
โ”œโ”€โ”€ LICENSE
โ”œโ”€โ”€ README.md
โ”œโ”€โ”€ nn
โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”œโ”€โ”€ _activation.py
โ”‚ย ย  โ”œโ”€โ”€ _base.py
โ”‚ย ย  โ”œโ”€โ”€ _criterion.py
โ”‚ย ย  โ””โ”€โ”€ _fully_connect.py
โ”œโ”€โ”€ supervised
โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”œโ”€โ”€ _base.py
โ”‚ย ย  โ”œโ”€โ”€ bayes
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”‚ย ย  โ””โ”€โ”€ _bayes.py
โ”‚ย ย  โ”œโ”€โ”€ knn
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”‚ย ย  โ””โ”€โ”€ _k_nearest.py
โ”‚ย ย  โ”œโ”€โ”€ linear
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _base.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _linear_regression.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _logistic_regression.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _multi_classifier.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _perceptron.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _regularization.py
โ”‚ย ย  โ”‚ย ย  โ””โ”€โ”€ _support_vector_machine.py
โ”‚ย ย  โ””โ”€โ”€ tree
โ”‚ย ย      โ”œโ”€โ”€ __init__.py
โ”‚ย ย      โ”œโ”€โ”€ _cart.py
โ”‚ย ย      โ”œโ”€โ”€ _id3.py
โ”‚ย ย      โ””โ”€โ”€ ensemble
โ”‚ย ย          โ”œโ”€โ”€ __init__.py
โ”‚ย ย          โ”œโ”€โ”€ _adaboost.py
โ”‚ย ย          โ””โ”€โ”€ _random_forest.py
โ”œโ”€โ”€ test
โ”‚ย ย  โ”œโ”€โ”€ nn_models
โ”‚ย ย  โ”‚ย ย  โ””โ”€โ”€ fcnn.py
โ”‚ย ย  โ””โ”€โ”€ test_supervised.py
โ”œโ”€โ”€ unsupervised
โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”œโ”€โ”€ clustering
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _base.py
โ”‚ย ย  โ”‚ย ย  โ”œโ”€โ”€ _kmeans.py
โ”‚ย ย  โ”‚ย ย  โ””โ”€โ”€ _spectral.py
โ”‚ย ย  โ””โ”€โ”€ decomposition
โ”‚ย ย      โ”œโ”€โ”€ __init__.py
โ”‚ย ย      โ”œโ”€โ”€ _base.py
โ”‚ย ย      โ””โ”€โ”€ _pca.py
โ””โ”€โ”€ utils
    โ”œโ”€โ”€ __init__.py
    โ”œโ”€โ”€ _batch.py
    โ”œโ”€โ”€ _cross_validate.py
    โ”œโ”€โ”€ _make_data.py
    โ””โ”€โ”€ _scaling.py

Timeline

  • 2019.6.12
    • Linear Regression
    • Logistic Regression
    • Perceptron
    • utils.scaling / batch / cross_validate
  • 6.13
    • Support Vector Machine
    • K-Nearest-Neighbor
    • test script
  • 6.15
    • Bayes
  • 6.16
    • K-Means
  • 6.19
    • Spectral
    • Principle Component Analysis
  • 6.24
    • Decision Tree(ID3)
  • 7.2
    • Multi-classifier
    • Regularization
  • 7.13
    • Activation
    • Criterion
    • Fully Connected Layer
    • Fully Connected Neural Network Model
  • 8.17-8.20
    • Improve project structure
    • Decision Tree(CART)
    • Random Forest
    • Adaboost
  • 8.23
    • Hidden Markov Model

About

๐Ÿ‹่‡ชๅˆถๆœบๅ™จๅญฆไน ็ฎ—ๆณ•ๅบ“๐Ÿ‹

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%