├── 01 - TensorFlow Basic ├── 01.py ├── 02.py └── 03.py ├── 02 - Linear Regression ├── 01.py ├── 02.py └── k01.py ├── 03 - Gradient Descendent ├── 01.py └── 02.py ├── 04 - Multi-variable Linear Regression ├── 01.py ├── 02.py ├── 03.py ├── 04.py ├── k02.py ├── k03.py ├── k04.py └── train.txt ├── 05 - Logistic Classification ├── 01.py ├── 02.py ├── k01.py └── train.txt ├── 06 - Softmax Regression ├── 01.py ├── 02.py └── train.txt ├── 07 - Accuracy ├── 01.py └── k01.py ├── 09 - Neural Network ├── 01.py ├── 02.py └── train.txt ├── 10 - Tuning NN ├── 01.py ├── 02.py └── 03.py ├── 11 - CNN └── 01.py ├── 12 - RNN └── 01.py └── README.md /01 - TensorFlow Basic/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/01 - TensorFlow Basic/01.py -------------------------------------------------------------------------------- /01 - TensorFlow Basic/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/01 - TensorFlow Basic/02.py -------------------------------------------------------------------------------- /01 - TensorFlow Basic/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/01 - TensorFlow Basic/03.py -------------------------------------------------------------------------------- /02 - Linear Regression/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/02 - Linear Regression/01.py -------------------------------------------------------------------------------- /02 - Linear Regression/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/02 - Linear Regression/02.py -------------------------------------------------------------------------------- /02 - Linear Regression/k01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/02 - Linear Regression/k01.py -------------------------------------------------------------------------------- /03 - Gradient Descendent/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/03 - Gradient Descendent/01.py -------------------------------------------------------------------------------- /03 - Gradient Descendent/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/03 - Gradient Descendent/02.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/01.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/02.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/03.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/04.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/k02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/k02.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/k03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/k03.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/k04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/k04.py -------------------------------------------------------------------------------- /04 - Multi-variable Linear Regression/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/04 - Multi-variable Linear Regression/train.txt -------------------------------------------------------------------------------- /05 - Logistic Classification/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/05 - Logistic Classification/01.py -------------------------------------------------------------------------------- /05 - Logistic Classification/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/05 - Logistic Classification/02.py -------------------------------------------------------------------------------- /05 - Logistic Classification/k01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/05 - Logistic Classification/k01.py -------------------------------------------------------------------------------- /05 - Logistic Classification/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/05 - Logistic Classification/train.txt -------------------------------------------------------------------------------- /06 - Softmax Regression/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/06 - Softmax Regression/01.py -------------------------------------------------------------------------------- /06 - Softmax Regression/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/06 - Softmax Regression/02.py -------------------------------------------------------------------------------- /06 - Softmax Regression/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/06 - Softmax Regression/train.txt -------------------------------------------------------------------------------- /07 - Accuracy/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/07 - Accuracy/01.py -------------------------------------------------------------------------------- /07 - Accuracy/k01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/07 - Accuracy/k01.py -------------------------------------------------------------------------------- /09 - Neural Network/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/09 - Neural Network/01.py -------------------------------------------------------------------------------- /09 - Neural Network/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/09 - Neural Network/02.py -------------------------------------------------------------------------------- /09 - Neural Network/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/09 - Neural Network/train.txt -------------------------------------------------------------------------------- /10 - Tuning NN/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/10 - Tuning NN/01.py -------------------------------------------------------------------------------- /10 - Tuning NN/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/10 - Tuning NN/02.py -------------------------------------------------------------------------------- /10 - Tuning NN/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/10 - Tuning NN/03.py -------------------------------------------------------------------------------- /11 - CNN/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/11 - CNN/01.py -------------------------------------------------------------------------------- /12 - RNN/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/12 - RNN/01.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/TensorFlow-ML-Exercises/HEAD/README.md --------------------------------------------------------------------------------