Skip to content

Hinaser/Machine-Learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Machine Learning to Everyone

In recent years, there appears a lot of websites for understanding machine learning. They are so helpful but I feel they still require some basic knowledge before taking in the grace of machine learning world, from my experience. This is why I compose this website.

In this website, I try to share where those difficulties stand and how to overcome them.

I hope both readers and the author can learn ML deeper together and share thought about ML.

How to start development

This part is for preparing to develop this website.
Maybe only for the original author.

  1. Make sure you already installed Node.js.
    You can install it by the command below if your running OS is Ubuntu 16.04.
    curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
    sudo apt-get install -y nodejs
    

For different OS, learn how to install Node.js in Node.js Official website

  1. Clone this repository
    git clone https://github.com/Hinaser/Machine-Learning
    
  2. Install dev dependencies
    npm install
    
  3. Run a web server
    npm run serve:dev
    

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create Pull Request