deep-learning-with-python-notebooks icon indicating copy to clipboard operation
deep-learning-with-python-notebooks copied to clipboard

Jupyter notebooks for the code samples of the book "Deep Learning with Python"

Results 149 deep-learning-with-python-notebooks issues
Sort by recently updated
recently updated
newest added

PLS HELP ME TO SORT THIS THING OUT ![1](https://user-images.githubusercontent.com/93241103/212591555-e74f54e8-0849-4334-a9d8-6098a9f81b71.png) ![2](https://user-images.githubusercontent.com/93241103/212591565-2d35f7a0-acd9-4a3a-8fca-185a3d1f7ab5.png) ![3](https://user-images.githubusercontent.com/93241103/212591572-293e5254-29af-4801-97b6-d00f764e2e07.png)

When trying to run the code for preparing Glove word-embeddings matrix, towards the end of the notebook for chapter 11, part 2, I get an error: embedding_dim = 100 #...

**Description:** Reading the section 10 _Deep learning for timeseries_, there appears to be a potential discrepancy between the problem statement and the actual implementation. **Problem Statement:** The problem statement, as...

I tried to run this file https://github.com/fchollet/deep-learning-with-python-notebooks/blob/master/chapter11_part02_sequence-models.ipynb and this section as the below: import tensorflow as tf inputs = keras.Input(shape=(None,), dtype="int64") embedded = tf.one_hot(inputs, depth=max_tokens) x = layers.Bidirectional(layers.LSTM(32))(embedded) x =...

Hi @fchollet, Something came back to me, regarding these notebooks: `chapter11_part04_sequence-to-sequence-learning.ipynb` never defines or imports `TransformerEncoder`, as it comes a bit after the passage that is the basis for `chapter11_part03_transformer.ipynb`,...

I have added the model parameter to generate the text as expected by the TextGenerator class. Earlier the self.model(tokenized_sentence) would not recognize the model. If the model is not trained...

Hi there, First off, congratulations on the new edition of Deep Learning With Python, it's good to see the material refreshed! A quick question came up (I'm updating course material...

Under the section "Sequence models": typo: TextVecotorization correct: TextVectorization

Instead of print("Test MAE: {model.evaluate(test_dataset)[1]:.2f}") it should be: print(f"Test MAE: {model.evaluate(test_dataset)[1]:.2f}")

There is a typo in Listing 4.29 Saving the validation logs at each fold. The correct key is mean_absolute_error and not val_mean_absolute_error