Giter Site home page Giter Site logo

Comments (3)

ginxy avatar ginxy commented on July 28, 2024 1

Hi

I had the same problem. The solution, at least the one I have found, is to cast the tensor for the input data to a double type. I've done that by simply adding .double() to the script "extract_features.py" for the class ClevrImagesDataset(Dataset) which loads, transforms and returns a tensor for feature extraction. The function getitem will look like this:

def __getitem__(self, index):
    image = Image.open(self._image_paths[index]).convert("RGB")
    image_tensor = self._transform(image)
    return image_tensor.double()

This should get rid of the dtype issue.

from probnmn-clevr.

Hemant-Parihar avatar Hemant-Parihar commented on July 28, 2024

Hi
I still got the same error. When I changed the ClevrImagesDataset(Dataset) class in extract_features.py.

Traceback (most recent call last): File "scripts/preprocess/extract_features.py", line 142, in <module> main(args) File "scripts/preprocess/extract_features.py", line 129, in main output_features = feature_extractor(batch) File "/home/badri/anaconda3/envs/probnmn/lib/python3.6/site-packages/torch/nn/modules/module.py", line 489, in __call__ result = self.forward(*input, **kwargs) File "/home/badri/anaconda3/envs/probnmn/lib/python3.6/site-packages/torch/nn/modules/container.py", line 92, in forward input = module(input) File "/home/badri/anaconda3/envs/probnmn/lib/python3.6/site-packages/torch/nn/modules/module.py", line 489, in __call__ result = self.forward(*input, **kwargs) File "/home/badri/anaconda3/envs/probnmn/lib/python3.6/site-packages/torch/nn/modules/conv.py", line 320, in forward self.padding, self.dilation, self.groups) RuntimeError: Input type (torch.cuda.DoubleTensor) and weight type (torch.cuda.FloatTensor) should be the same

from probnmn-clevr.

kdexd avatar kdexd commented on July 28, 2024

Please pull from latest master, this issue should be fixed. Feel free to re-open!

from probnmn-clevr.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.