Home > Collection

Collection

Collection is a project mainly written in ..., it's free.

http://scipy-lectures.github.com/ ########################################################

AI

######################################################## https://www.ai-class.com/

########################################################

Machine Learning:

######################################################## http://www.cs.cmu.edu/~tom/mlbook.html

Many more papers, all co-authored by prof. Andrew Ng

http://ai.stanford.edu/~ang/papers.php

Example of ML for Stock Prediction

The Paper: http://www.vatsals.com/Essays/MachineLearningTechniquesforStockPrediction.pdf The Implementation: http://www.stoocker.com/About.aspx

octave debug mode

http://www.gnu.org/software/octave/doc/interpreter/Debug-Mode.html

#########################################################

Matlab's Sample

#########################################################

######################

github.com

##################### ssh-keygen -t rsa -C "[email protected]"

Global setup:

Set up git git config --global user.name "Name" git config --global user.email [email protected]

Next steps:

mkdir ml_class cd ml_class git init touch README git add README git commit -m 'first commit' git remote add origin [email protected]:Name/ml_class.git git push -u origin master

Existing Git Repo?

cd existing_git_repo git remote add origin [email protected]:GuosongChen/ml_class.git git push -u origin master