Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ruiminshen committed May 19, 2017
1 parent daf7320 commit f12fbb2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## Configuration

Configurations are mainly defined in the "config.ini" file. Such as the detection model (config/model), base directory (config/basedir, which identifies the cache files (.tfrecord), the model data files (.ckpt), and summary data for TensorBoard), and the inference function ([model]/inference). Notability the configurations can be extended using the "-c" command-line argument.
Configurations are mainly defined in the "config.ini" file. Such as the detection model (config/model), base directory (config/basedir, which identifies the cache files (.tfrecord), the model data files (.ckpt), and summary data for TensorBoard), and the inference function ([model]/inference). *Notability the configurations can be extended using the "-c" command-line argument*.

## Basic Usage

Expand Down Expand Up @@ -66,7 +66,13 @@ tensorboard --logdir /home/srm/Documents/Database/yolo-tf/yolo2/darknet/20
python3 train.py -c config.ini config/yolo2/darknet-20.ini -b 16
```

- Training about 60,000 steps and detect objects with a camera.
- Detect objects from an image file.

```
python3 detect.py $IMAGE_FILE -c config.ini config/yolo2/darknet-20.ini
```

- Detect objects with a camera.

```
python3 detect_camera.py -c config.ini config/yolo2/darknet-20.ini
Expand Down

0 comments on commit f12fbb2

Please sign in to comment.