Closed thistlillo closed 2 years ago
This happens when a function returns an EDDL type but PyEDDL has not been imported. Add import pyeddl.eddl
or import pyeddl.tensor
to the program. I've updated the docs with this info.
Thank you, indeed I used the loader without problems with previous versions for accessing images. I was evaluating how easy is to manage the word indexes in Sample
and did not import Tensor
up to that point.
Hello, I have a couple of questions on the ECVL dataset using PyECVL. The dataset has this form:
The numbers in
values
are word indexes of the text associated to the images.When I try and access the data with these lines:
I get this error:
with the following being the full stack trace:
I cannot understand what I am doing wrong. I looked at other use cases using the ECVL DLDataset but could not spot any differences. The error occurs even if I remove the
values
from each image.Using PyEDDL/cudnn version 1.2,0 and PyECVL/cudnn version 1.1.0, installed via Conda on linux.