Coder Social home page Coder Social logo

Comments (3)

hirotomusiker avatar hirotomusiker commented on August 15, 2024

I did not put FPS performance results on README because the frame rate performance largely depends on :

  • Hardware (GPU, CPU)
  • Cuda and CuDNN versions
  • PyTorch and other package versions
  • preprocess and postprocess
    The papers usually don't disclose all the conditions on which their benchmark was done.

But as long as I see your code, preprocessing to re-size your large image and imwrite (if you do that every frame) should be slow. I recommend you to perform only the forward process on GPU and measure the inference speed firstly.

Thank you!

from pytorch_yolov3.

sisrfeng avatar sisrfeng commented on August 15, 2024

Thanks a lot!
If I feed 1600x1200 imgs to pytorch_GaussianYOLOv3 , I get 10 fps (the time includes preprossing)
Then I re-size 1600x1200 imgs to 416x416 and imwrite. The original code after imwrite is commented:

img = np.transpose(img / 255., (2, 0, 1))
img = torch.from_numpy(img).float().unsqueeze(0)

if gpu >= 0:
    # Send model to GPU
    img = Variable(img.type(torch.cuda.FloatTensor))
else:
    img = Variable(img.type(torch.FloatTensor))

If I feed 416x416 imgs to pytorch_GaussianYOLOv3, I get 21 fps.

Which of these two types of FPS is usually mentioned on the papers?

from pytorch_yolov3.

hirotomusiker avatar hirotomusiker commented on August 15, 2024

I'm not sure but in the following code they measure fps including pre-process.
https://github.com/pjreddie/darknet/blob/master/src/demo.c

from pytorch_yolov3.

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.