Skip to content
Advertisement

ValueError: not enough values to unpack (expected 3, got 2) in Pytorch

this is my Define validate function
when I load the model and start prediction using this code I have received the error using PyTorch.and after this, I am iterating through the epoch loop and batch loop and I landed with this error.

JavaScript

And this is the main function where I call validate function get the error when model is loaded and start prediction on the test loader

JavaScript

as you can see in traceback error it gives some Terminal shows error:

JavaScript

Advertisement

Answer

From torchvision.datasets.ImageFolder documentation:

“Returns: (sample, target) where target is class_index of the target class.”

So, quite simply, the dataset object you’re currently using returns a tuple with 2 items. You’ll get an error if you try to store this tuple in 3 variables. The correct line would be:

JavaScript

If you really need the names (which I assume is the file path for each image) you can define a new dataset object that inherits from the ImageFolder dataset and overload the __getitem__ function to also return this information.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement