All Projects → PacktPublishing → Deep Learning With Tensorflow 2 And Keras

PacktPublishing / Deep Learning With Tensorflow 2 And Keras

Licence: mit
Deep Learning with TensorFlow 2 and Keras, published by Packt

Projects that are alternatives of or similar to Deep Learning With Tensorflow 2 And Keras

Ghapi
A delightful and complete interface to GitHub's amazing API
Stars: ✭ 187 (-1.58%)
Mutual labels:  jupyter-notebook
Awesome Jupyter
A curated list of awesome Jupyter projects, libraries and resources
Stars: ✭ 2,523 (+1227.89%)
Mutual labels:  jupyter-notebook
Juniper
🍇 Edit and execute code snippets in the browser using Jupyter kernels
Stars: ✭ 189 (-0.53%)
Mutual labels:  jupyter-notebook
California Coronavirus Data
The Los Angeles Times' independent tally of coronavirus cases in California.
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Notebooks
Jupyter Notebooks with Deep Learning Tutorials
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Clustergrammer
An interactive heatmap visualization built using D3.js
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Kaggle Playground
Jupyter notebooks and code examples for my Kaggle Beginners' Guide.
Stars: ✭ 187 (-1.58%)
Mutual labels:  jupyter-notebook
Nbinteract
Create interactive webpages from Jupyter Notebooks
Stars: ✭ 189 (-0.53%)
Mutual labels:  jupyter-notebook
Dragan
A stable algorithm for GAN training
Stars: ✭ 189 (-0.53%)
Mutual labels:  jupyter-notebook
Faceshifter
Try to reproduce FaceShifter
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Iridescent
Solid data structure and algorithms
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Ipypublish
A workflow for creating and editing publication ready scientific reports and presentations, from one or more Jupyter Notebooks, without leaving the browser!
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Scipy Lecture Notes cn
Pytho科学计算生态介绍的中文翻译,英文原文地址:
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Worldmodels
World Models with TensorFlow 2
Stars: ✭ 185 (-2.63%)
Mutual labels:  jupyter-notebook
Whotracks.me
Data from the largest and longest measurement of online tracking.
Stars: ✭ 189 (-0.53%)
Mutual labels:  jupyter-notebook
Catalogos Dados Brasil
Mapeamento de iniciativas (e catálogos) de dados abertos governamentais no Brasil.
Stars: ✭ 187 (-1.58%)
Mutual labels:  jupyter-notebook
Carputer
Toy car that drives itself using neural networks
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Germanwordembeddings
Toolkit to obtain and preprocess german corpora, train models using word2vec (gensim) and evaluate them with generated testsets
Stars: ✭ 189 (-0.53%)
Mutual labels:  jupyter-notebook
Practical Time Series Analysis
Practical Time-Series Analysis, published by Packt
Stars: ✭ 188 (-1.05%)
Mutual labels:  jupyter-notebook
Tensorflow2.0 Notes
Tensorflow 2.0 Notes 提供了TF2.0案例实战以及TF2.0基础实战,目标是帮助那些希望和使用Tensorflow 2.0进行深度学习开发和研究的朋友快速入门,其中包含的Tensorflow 2.0教程基本通过测试保证可以成功运行(有问题的可以提issue,笔记网站正在建设中)。
Stars: ✭ 187 (-1.58%)
Mutual labels:  jupyter-notebook

Deep Learning with TensorFlow 2 and Keras - 2nd Edition

This is the code repository for Deep Learning with TensorFlow 2 and Keras - 2nd Edition, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Deep Learning with TensorFlow 2 and Keras, 2nd edition teaches deep learning techniques alongside TensorFlow (TF) and Keras. The book introduces neural networks with TensorFlow, runs through the main applications, covers two working example apps, and then dives into TF and cloudin production, TF mobile, and using TensorFlow with AutoML.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter 2.

The code will look like the following:

@tf.function
def fn(input, state):
    return cell(input, state)

input = tf.zeros([100, 100])
state = [tf.zeros([100, 100])] * 2
# warmup
cell(input, state)
fn(input, state)

Install the latest version of conda, tensorflow, h5py, opencv

conda update conda
conda update --all
pip install --upgrade tensorflow
pip install --upgrade h5py
pip install opencv-python

Incoming fixes:

This is a compiled list of errors reported to us through Amazon with their solutions and ETA for fixes. Thanks to Sam S. for highlighting these:

From Jan 26, 2020 Review Notes:

  • Some programs are giving "cublas64-100.dll" file not found error. Is it possible for authors to zip this dll file and post it on this book's Github page please?

This doesnt look like it's depend on autors, but on the specific setup used by the reader. An additional information is needed from reader on this.

From Jan 25, 2020 Review Notes:

  • Ran cifar10_predict.py program of page 131. It ran without errors and gave output results. However, the output gave [4 4]. This output is saying both "standing cat imge" and "dog image" belong to same class of four. This result may be wrong, due to one or both of the following reasons:
    • Model file "cifar10_weights.h5" used by this program is wrong?
    • Accuracy of training program that generated this model file is very low?

All the above is fixed.

Questions are:

  • Which is the traing program that generated the above model file?
  • Is it the program on pages 128 and 129?

This is based on the pre-trained model contained in TF/Keras

  • Program on page 129 is saving to "model.h5" file.
  • I ran the program on page 129 and renamed the model file "model.h5" as "cifar10_weights.h5".
  • Then I ran program on page 131 and getting following error: ValueError: You are trying to load a weight file containing 13 layers into a model with 6 layers.
  • Authors need to fix these errors please?
  • Fix model file names of programs on pages 129 and 131 please?

The READ.ME file in Chapter 4 clarifies how to install the model with pre-trained weights.

Thanks again Sam S. we really appreciate your feedback and we'd love to get in touch to say thank you personally! Please feel free if you would like to contact me as the book's Producer, Ben Renow-Clarke, at [email protected] be great to connect!

Antonio Gulli Amita Kapoor Sujit Pal
Antonio Gulli Amita Kapoor Sujit Pal

Related Products

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].