-
When trying to use the repo in a Colab notebook, in the import section:
```
# Setup
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torch.uti…
-
# Issue: Define Architecture for Handwritten Digit Recognition Neural Network
**Description**:
We are looking for contributors to define the architecture of a neural network that can recognize h…
-
Hello there,
I don't understand why the dataset MNIST from [Torch Tutorial dataset MNIST](https://github.com/torch/tutorials/blob/master/A_datasets/mnist.lua) is made of 32x32 images instead of 28x28…
-
Hello
I'm experiencing occasional non-deterministic behaviour when running the script below on multi-device CPU (using flag `--xla_force_host_platform_device_count=8`).
The script runs 10 attemp…
-
## ❓ Questions & Help
hello @rusty1s :
I want to see the graph structure of MNISTSuperpixel Dataset.
And I write the code below:
```python
import networkx as nx
import numpy as np
…
-
- [mnist](./Datasets_Image_Classification_mnist)
- [Cifar10/100](./Datasets_Image_Classification_Cifar)
- [Oxford-IIIT Pets](./Datasets_Image_Classification_Oxford_IIIT_Pets)
- [ImageNet](./Datas…
-
Hi! hyhmia. It turns out defense you mentioned like MemGuard split data differently like your paper(e.g. in CH-MNIST dataset, target dataset is whole dataset in your paper while in MemGuard, they used…
-
Dear kipf,
Have you also tried with MNIST dataset for this method?
I see this is node classification, and I wonder if this model can work with MNIST or any other of image dataset.
with cora,
A =…
-
Creating projects based on MNIST or other standard datasets to show the real-life importance of cross-validation and optimization techniques rather than just using and fitting the models directly onto…
-
```python
def plot_digits(instances, images_per_row=10, **options):
size = 28
images_per_row = min(len(instances), images_per_row)
images = [instance.reshape(size,size) for instance in…