Inside-Deep-Learning
Inside-Deep-Learning copied to clipboard
Inside Deep Learning: The math, the algorithms, the models
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.
 this RNN output dim should be (B,T,D)->((B,T,hidden_nodes),(S,B,hidden_nodes)) accounting to docs  this shoud be
 I think the new result shape is C out,W,H  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:...