python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
two pytorch DistributedSampler same seeds different shuffling multiple GPU-s
I am trying to load two version (original and principal component pursuit (PCP) cleaned version) of the very same image data set for training a modell using pytorch on a multiple GPUs remote machine.
...

Gergely Mathe
Votes: 0
Answers: 2
Unable to create a custom torchtext BucketIterator
I'm trying to create a POS tagger with LSTM and I'm facing some difficulties with preparing the data.
I've successfully followed a guide that used the following code to prepare the data itertors:
TEXT...
EyalG
Votes: 0
Answers: 1
How to get a Pytorch data loader per class?
I want to train my model on 1 MNIST class at a time.
I can load the data with a general loader:
import torch
import torch.nn as nn
import torch.optim as optim
import torchvision.datasets as datasets
i...

Penguin
Votes: 0
Answers: 1
Loading & splitting same training data but getting different results
So I'm trying to manually split my training data into separate batches such that I can easily access them via indexing, and not relying on DataLoader to split them up for me, since that way I won't be...

Omar AlSuwaidi
Votes: 0
Answers: 0