Skip to content

2017TJM/pytorch-YOLO-v1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

pytorch implementation of yolo version 1

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%