Sprayer-Mods / ModelForge

Models envisioned
https://sprayermods.com
GNU General Public License v3.0
1 stars 0 forks source link

Implement YoloX-tiny and nano for inference #5

Open blake-espeland opened 2 years ago

blake-espeland commented 2 years ago

Based on this repository. image

This offers an insane improvement in terms of performance over the current anchor-based YOLOv5. This feature is mainly the implementation of a new detection head.

blake-espeland commented 2 years ago
blake-espeland commented 2 years ago

Here is the structure of the decoupled head

image

blake-espeland commented 2 years ago

@jared3831 is having issues with the datatypes/shapes of input tensors. The repo we're using expects a json file that lists the image file and the annotations. Either there is a conversion between these two shapes, or it may be easier to just start over from scratch.

blake-espeland commented 2 years ago

Merged #10, however, this doesn't include @jared3831's changes.

blake-espeland commented 2 years ago

Finally included @jared3831's changes in #12

blake-espeland commented 2 years ago

Implementation complete, ironing things out now