Coder Social home page Coder Social logo

Comments (4)

allenwu5 avatar allenwu5 commented on May 15, 2024 3

HI @Anikily ,
I can reproduce the error you encountered on my PC (os: windows10, cuda: available).
Then I do the debug, where x_y_offset.is_cuda = True, but prediction.is_cuda = False.

So I think you might be right, one in GPU but the other in CPU.
Then I added few lines in darknet.py (just pick somewhere looks suitable ...) so that prediction.is_cuda can be True later.

                # Transform
                x = x.data
                if CUDA:
                    x = x.cuda()

Now it pass with exit code 0.

But I still not sure where is a good place to put x = x.cuda() ...

from yolo_v3_tutorial_from_scratch.

Anikily avatar Anikily commented on May 15, 2024 2

Hi @arashilen , thansks for your reply.I have solved this problem yesterday in a similar way to yours.And I did this step in util.py...in just ablove the line which reported the error.

from yolo_v3_tutorial_from_scratch.

allenwu5 avatar allenwu5 commented on May 15, 2024

Hi @Anikily ,
Maybe you can debug value of x["anchors"] first.
E.g. my case would be this:
x["anchors"] = '10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326'

which is come from https://github.com/ayooshkathuria/YOLO_v3_tutorial_from_scratch/blob/master/cfg/yolov3.cfg

os: macos

from yolo_v3_tutorial_from_scratch.

Anikily avatar Anikily commented on May 15, 2024

thanks ,I have solved this problem, and I encountered another problem :
Traceback (most recent call last):
File "darknet.py", line 238, in
pred = model(inp,torch.cuda.is_available())
File "/home/tensor/anaconda2/envs/py36/lib/python3.6/site-packages/torch/nn/modules/module.py", line 477, in call
result = self.forward(*input, **kwargs)
File "darknet.py", line 227, in forward
x = predict_transform(x,inp_dim,anchors,num_classes,CUDA)
File "/home/tensor/jupyter/luyu/yolo3/util.py", line 79, in predict_transform
prediction[:,:,:2] += x_y_offset
RuntimeError: Expected object of type torch.FloatTensor but found type torch.cuda.FloatTensor for argument #4 'other'
maybe it means that the type of x_y_offset is torch,cuda.FloatTensor,but the type of prediction is torch.FloatTensor and they are not at the same memory address.How should I do?Transform the type of prediction to Cuda?

from yolo_v3_tutorial_from_scratch.

Related Issues (20)

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.