Darkflow: Changing settings in yolo.cfg

Created on 3 Nov 2017  路  2Comments  路  Source: thtrieu/darkflow

The first few lines in yolo.cfg are:

[net]
# Testing
batch=1
subdivisions=1
# Training
# batch=64
# subdivisions=8

During the training, shouldn't i comment out batch=1 and subdivisions=1 and train my model with batch=64 and subdivisions=8 ?

batch=1 and subdivisions=1 is set like this only when we are testing our model right?

Most helpful comment

You can train with batch and subdivision equal 1. It just takes a long time.
If I remember correctly batch is the amount of images loaded into memory at once and subdivisions means how many images are processed at once.
You should set those as high as your vram allows you for the fastest possible training. Just make sure that batch % subdivisions = 0

All 2 comments

You can train with batch and subdivision equal 1. It just takes a long time.
If I remember correctly batch is the amount of images loaded into memory at once and subdivisions means how many images are processed at once.
You should set those as high as your vram allows you for the fastest possible training. Just make sure that batch % subdivisions = 0

Alright thanks!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

borasy picture borasy  路  3Comments

bareblackfoot picture bareblackfoot  路  4Comments

ma3252788 picture ma3252788  路  3Comments

eugtanchik picture eugtanchik  路  4Comments

hrshovon picture hrshovon  路  5Comments