cwq159 / PyTorch-Spiking-YOLOv3

A PyTorch implementation of Spiking-YOLOv3. Two branches are provided, based on two common PyTorch implementation of YOLOv3(ultralytics/yolov3 & eriklindernoren/PyTorch-YOLOv3), with support for Spiking-YOLOv3-Tiny at present.
GNU General Public License v3.0
207 stars 58 forks source link

About convertion #39

Open ryikl opened 2 years ago

ryikl commented 2 years ago

Theoretically, the conversion operation should work on all Ann. Why can yolo-tiny be converted while other networks cannot. If I want to convert other networks, what improvements do I need to make in your work.

cwq159 commented 2 years ago

Because not all operators in ANN can be converted to SNN. Only some linear operators can be supported for now.

ryikl commented 2 years ago

Do you mean that shortcut cannot be converted? I learned that in the cfg file, yolov3 is only more shortcut than tiny yolov3.

cwq159 commented 2 years ago

Shortcut will be supported in the next version.