python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Combine multiple DataLoaders sequentially
I'm interested in how I'd go about combining multiple DataLoaders sequentially for training. I understand I can use ConcatDataset to combine datasets first, but this does not work for my use case. I h...
Julian L
Votes: 0
Answers: 2
How to load huggingface's BERT after fine-tuning with Pytorch Lightning?
I fine-tuned a pre-trained BERT model from Huggingface on a custom dataset for 10 epochs using pytorch-lightning. I did logging with Weights and Biases logger.
When I load from checkpoint like so:
mod...
Ilia
Votes: 0
Answers: 1
Training Loss decreasing but Validation Loss is stable
I am trying to train a neural network I took from this paper https://scholarworks.rit.edu/cgi/viewcontent.cgi?referer=&httpsredir=1&article=10455&context=theses. See this image: Neural Net...
Abdelaziz BEN-EL-GADA
Votes: 0
Answers: 0
Ray training with PyTorch and PyTorchLightning raise ValueError("Expected a parent")
I have a code that has a data module and a model and I am training my model with Ray trainer, here is my code:
class CSIDataset(pl.LightningDataModule):
def __init__(self, pkl_dir):
...

Samira Khorshidi
Votes: 0
Answers: 1