├── .gitignore ├── 01_linear_regression_sol.ipynb ├── 01_linear_regression_sol.py ├── 01_linear_regression_starter.ipynb ├── 01_linear_regression_starter.py ├── 01_logistic_regression_mnist_sol.ipynb ├── 01_logistic_regression_mnist_sol.py ├── 01_logistic_regression_mnist_starter.ipynb ├── 01_logistic_regression_mnist_starter.py ├── 02_csv_reader.py ├── 02_queue_example.py ├── 02_sharing_variables.py ├── 02_tfrecord_example.py ├── 02_word2vec_no_frills.py ├── 02_word2vec_starter.py ├── 02_word2vec_visualize.py ├── Dockerfile ├── README.md ├── data ├── fire_theft.xls ├── friday.jpg ├── friday.tfrecord ├── heart.csv └── heart.txt ├── docker-compose.yml ├── exercises ├── e01.ipynb └── e01.py ├── process_data.py ├── setup ├── requirements.txt └── setup_instruction.md └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | graphs/ 2 | __pycache__/ 3 | .ipynb_* 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /01_linear_regression_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_linear_regression_sol.ipynb -------------------------------------------------------------------------------- /01_linear_regression_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_linear_regression_sol.py -------------------------------------------------------------------------------- /01_linear_regression_starter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_linear_regression_starter.ipynb -------------------------------------------------------------------------------- /01_linear_regression_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_linear_regression_starter.py -------------------------------------------------------------------------------- /01_logistic_regression_mnist_sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_logistic_regression_mnist_sol.ipynb -------------------------------------------------------------------------------- /01_logistic_regression_mnist_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_logistic_regression_mnist_sol.py -------------------------------------------------------------------------------- /01_logistic_regression_mnist_starter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_logistic_regression_mnist_starter.ipynb -------------------------------------------------------------------------------- /01_logistic_regression_mnist_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/01_logistic_regression_mnist_starter.py -------------------------------------------------------------------------------- /02_csv_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_csv_reader.py -------------------------------------------------------------------------------- /02_queue_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_queue_example.py -------------------------------------------------------------------------------- /02_sharing_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_sharing_variables.py -------------------------------------------------------------------------------- /02_tfrecord_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_tfrecord_example.py -------------------------------------------------------------------------------- /02_word2vec_no_frills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_word2vec_no_frills.py -------------------------------------------------------------------------------- /02_word2vec_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_word2vec_starter.py -------------------------------------------------------------------------------- /02_word2vec_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/02_word2vec_visualize.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/README.md -------------------------------------------------------------------------------- /data/fire_theft.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/data/fire_theft.xls -------------------------------------------------------------------------------- /data/friday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/data/friday.jpg -------------------------------------------------------------------------------- /data/friday.tfrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/data/friday.tfrecord -------------------------------------------------------------------------------- /data/heart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/data/heart.csv -------------------------------------------------------------------------------- /data/heart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/data/heart.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exercises/e01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/exercises/e01.ipynb -------------------------------------------------------------------------------- /exercises/e01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/exercises/e01.py -------------------------------------------------------------------------------- /process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/process_data.py -------------------------------------------------------------------------------- /setup/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/setup/requirements.txt -------------------------------------------------------------------------------- /setup/setup_instruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/setup/setup_instruction.md -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiphuyen/tf-oreilly/HEAD/utils.py --------------------------------------------------------------------------------