Documents on how to use git github.
Also the installation of tensorflow.
git commit -m "My first commit"
git remote add origin https://github.com/SeagleLiu/SeagleDLTrial.git
git clone https://github.com/SeagleLiu/SeagleDLTrial.git
git add .
git commit -m "xxxx"
git commit -am "xxxx"
git push origin master
git pull origin master
python -m pip install --upgrade pip
pip install tensorflow
Trial1.py: basics of tensorflow
trial2.py: basics of spark in python.
DL_C1: udacity DL course 1, logistic regression with python.