├── .gitignore ├── Chapter 10 └── chapter_10.ipynb ├── Chapter 11 ├── Chapter_11.ipynb ├── Story_generation_with_lstms.ipynb ├── Using__pretrained__embeddings.ipynb └── stories.txt ├── Chapter 12 ├── Retail_store_forecasting_stat_methods.ipynb ├── Time__series__forecasting__with__ML.ipynb └── sales_data.csv ├── Chapter 13 ├── Apple_Stock_forecasting.ipynb ├── Chapter_13_1.ipynb └── Chapter_13_2.ipynb ├── Chapter 2 ├── Chapter_2_Data_Representation.ipynb └── Chapter_2_Hello_World.ipynb ├── Chapter 3 ├── Linear_Regression_with_TensorFlow.ipynb ├── new_hires.csv └── salary_dataset.csv ├── Chapter 4 ├── Classification_with_TensorFlow.ipynb └── Student Drop out dataset.csv ├── Chapter 5 └── Image_classification_with_tensorflow.ipynb ├── Chapter 6 └── Chapter_6.ipynb ├── Chapter 7 ├── Chapter_7_1.ipynb ├── Chapter_7_2.ipynb └── weather dataset.zip ├── Chapter 8 └── Chapter_8.ipynb ├── Chapter 9 └── Chapter_9.ipynb ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | desktop.ini 2 | -------------------------------------------------------------------------------- /Chapter 10/chapter_10.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 10/chapter_10.ipynb -------------------------------------------------------------------------------- /Chapter 11/Chapter_11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 11/Chapter_11.ipynb -------------------------------------------------------------------------------- /Chapter 11/Story_generation_with_lstms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 11/Story_generation_with_lstms.ipynb -------------------------------------------------------------------------------- /Chapter 11/Using__pretrained__embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 11/Using__pretrained__embeddings.ipynb -------------------------------------------------------------------------------- /Chapter 11/stories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 11/stories.txt -------------------------------------------------------------------------------- /Chapter 12/Retail_store_forecasting_stat_methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 12/Retail_store_forecasting_stat_methods.ipynb -------------------------------------------------------------------------------- /Chapter 12/Time__series__forecasting__with__ML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 12/Time__series__forecasting__with__ML.ipynb -------------------------------------------------------------------------------- /Chapter 12/sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 12/sales_data.csv -------------------------------------------------------------------------------- /Chapter 13/Apple_Stock_forecasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 13/Apple_Stock_forecasting.ipynb -------------------------------------------------------------------------------- /Chapter 13/Chapter_13_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 13/Chapter_13_1.ipynb -------------------------------------------------------------------------------- /Chapter 13/Chapter_13_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 13/Chapter_13_2.ipynb -------------------------------------------------------------------------------- /Chapter 2/Chapter_2_Data_Representation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 2/Chapter_2_Data_Representation.ipynb -------------------------------------------------------------------------------- /Chapter 2/Chapter_2_Hello_World.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 2/Chapter_2_Hello_World.ipynb -------------------------------------------------------------------------------- /Chapter 3/Linear_Regression_with_TensorFlow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 3/Linear_Regression_with_TensorFlow.ipynb -------------------------------------------------------------------------------- /Chapter 3/new_hires.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 3/new_hires.csv -------------------------------------------------------------------------------- /Chapter 3/salary_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 3/salary_dataset.csv -------------------------------------------------------------------------------- /Chapter 4/Classification_with_TensorFlow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 4/Classification_with_TensorFlow.ipynb -------------------------------------------------------------------------------- /Chapter 4/Student Drop out dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 4/Student Drop out dataset.csv -------------------------------------------------------------------------------- /Chapter 5/Image_classification_with_tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 5/Image_classification_with_tensorflow.ipynb -------------------------------------------------------------------------------- /Chapter 6/Chapter_6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 6/Chapter_6.ipynb -------------------------------------------------------------------------------- /Chapter 7/Chapter_7_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 7/Chapter_7_1.ipynb -------------------------------------------------------------------------------- /Chapter 7/Chapter_7_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 7/Chapter_7_2.ipynb -------------------------------------------------------------------------------- /Chapter 7/weather dataset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 7/weather dataset.zip -------------------------------------------------------------------------------- /Chapter 8/Chapter_8.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 8/Chapter_8.ipynb -------------------------------------------------------------------------------- /Chapter 9/Chapter_9.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/Chapter 9/Chapter_9.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/TensorFlow-Developer-Certificate-Guide/HEAD/README.md --------------------------------------------------------------------------------