Inside-Deep-Learning icon indicating copy to clipboard operation
Inside-Deep-Learning copied to clipboard

Inside Deep Learning: The math, the algorithms, the models

Results 24 Inside-Deep-Learning issues
Sort by recently updated
recently updated
newest added

Hi, I was getting the followed erro when I executing this code: ```py from torch.utils.data import Dataset from sklearn.datasets import fetch_openml X, y = fetch_openml("mnist_784", version=1, return_X_y=True) class SimpleDataset(Dataset): def...

Hi, when executing the 2nd cell: ``` python import torch import torch.nn as nn import torch.nn.functional as F from torch.utils.data import * from idlmam import * ``` I get this...

Change pakced in packed

When running in colab (using GPU) I got the following error in cell: ``` rnn_3layer = nn.Sequential( #Simple old style RNN EmbeddingPackable(nn.Embedding(len(all_letters), 64)), #(B, T) -> (B, T, D) nn.RNN(64,...

Replacing `self.num_driections` by `self.num_directions`

Hi, Thanks for the examples. I think it would make sense to add the following to the notebooks: ``` from google.colab import drive drive.mount('/content/drive') ``` and ``` # Here you...

`test_data = torchvision.datasets.FashionMNIST("./", train=True, transform=transforms.ToTensor(), download=True)` should use `train=False` This changes the figures in this chapter significantly.

![image](https://github.com/EdwardRaff/Inside-Deep-Learning/assets/12532421/e23e8d27-12ef-46db-b071-fb829f2baec9) this RNN output dim should be (B,T,D)->((B,T,hidden_nodes),(S,B,hidden_nodes)) accounting to docs ![image](https://github.com/EdwardRaff/Inside-Deep-Learning/assets/12532421/7dc9a64f-42bf-49c7-b14f-dcd4b1e83306) this shoud be

![image](https://github.com/EdwardRaff/Inside-Deep-Learning/assets/12532421/8562e276-6d42-4f64-87a9-6ca7857ae363) I think the new result shape is C out,W,H ![image](https://github.com/EdwardRaff/Inside-Deep-Learning/assets/12532421/7bae3fa4-9a09-4fec-879c-b2026f4a758c) I think Conv3d does Batch, Channels, Width, Height, Depth

Figure 6.2: the 4th "high complexity" function figure is not a function because the figure suggests that a particular x value can map to multiple distinct y values. Section 6.3.2:...