Giter Club home page Giter Club logo

pytorch-yolo-v1's Introduction

Pytorch Implementation of YOLO v1


NOT COMPLETED YET!

Recommended directory structure

- data
  - train
    - images
      - [image name].[png/jpg/bmp]
      - ...
    - bboxes
      - [image name].txt
      - ...
  - test
    - images
      - ...
    - bboxes
      - ...
  - class_names.txt
- dataloader
  - dataloader.py
- loss
  - loss.py
- metric
  - metric.py
- models
  - model.py
  - yolo.py
- test.py
- train.py

class_names.txt Format

{1st-label}
...
{nth-label}

ex) class_names.txt:
cat
dog
...
mouse

BBox Format

shape of bbox:
(x0, y0)-----(x1, y0)
   |            |
   |            |
(x0, y1)-----(x1, y1)
[x,y][0,1] is normalized coordinate.
ex) if size of image is (100, 100) and a point is located at (30, 40), then (x, y) of the point is (0.3, 0.4).

{image name}.txt:
{label} {x0} {y0} {x1} {y1}
...
{label} {x0} {y0} {x1} {y1}

ex)
img0.txt:
car 0.23 0.4 0.34 0.8
ball 0.1 0.1 0.3 0.2

How to Run

training:

python train.py --data       = path/to/training/data (default: './data/train')
                --batch_size = batch size            (default: 32)
                --lr         = learning rate         (default: 1e-3)
                --epoch      = epoch                 (default: 100)
                --gpu        = using gpu or not      (default: True)

test:

python test.py

References

YOLO-v1 paper

pytorch-yolo-v1's People

Contributors

gunjunlee avatar

Watchers

James Cloos avatar paper2code - bot avatar

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.