nimble icon indicating copy to clipboard operation
nimble copied to clipboard

Can any deep learning model be used in nimble, such as yolov5??

Open umairjavaid opened this issue 3 years ago • 3 comments

umairjavaid avatar Aug 31 '21 21:08 umairjavaid

I am not familiar with the YOLO v5 model, so let me list the general requirements of Nimble. Nimble requires a neural network module to have the following properties:

  • CUDA only (should not entail any CPU operations)
  • Static (performs the same set of computations for different runs; e.g., the shape of the input image should be fixed)

gyeongin avatar Sep 01 '21 05:09 gyeongin

We can extend Nimble to relax the above requirements: handling CPU operations and dynamic shapes. However, these extensions are not part of the open-sourced Nimble.

bgchun avatar Sep 01 '21 06:09 bgchun

Thank you so much!

umairjavaid avatar Sep 01 '21 07:09 umairjavaid