Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ksanjeevan committed Jul 30, 2018
1 parent f98d125 commit be9da6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Will store the custom bounding box priors wherever the path indicates in the con

Training will create directory **logs/** which will store metrics and checkpoints for all the different training runs.

Model passed is used for [transfer learning](https://en.wikipedia.org/wiki/Transfer_learning).
Model passed is used for [transfer learning](https://en.wikipedia.org/wiki/Transfer_learning) by randomizing the last layer of the network (with the appropiate size of the target classes).

Example:
`python3 dourflow.py train -m models/logo/coco_model.h5 -c confs/config_custom.json`
Expand All @@ -222,7 +222,7 @@ Then, in another terminal tab you can run `tensorboard --logdir=logs/run_X` and

#### To Do

- [x] Multiclass NMS
- [x] Multiclass Non Max Suppression
- [x] Anchor generation for custom datasets
- [ ] mAP write up
- [x] Add webcam support
Expand Down
3 changes: 1 addition & 2 deletions yolov2.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def training(self):

early_stop = EarlyStopping(monitor='val_loss',
min_delta=0.001,
patience=7,
patience=3,
mode='min',
verbose=1)

Expand Down Expand Up @@ -243,7 +243,6 @@ def training(self):
decay=0.0)



map_cbck = Callback_MAP(generator=valid_gen,
model=self.inf_model,
tensorboard=tensorboard)
Expand Down

0 comments on commit be9da6c

Please sign in to comment.