Skip to content

Commit

Permalink
initial commit for tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibozhu committed Aug 25, 2020
1 parent 2af47b6 commit 6c89f9c
Show file tree
Hide file tree
Showing 2 changed files with 111 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CVC-YOLOv3/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def add_bool_arg(name, default, help):
parser.add_argument('--batch_size', type=int, default=7, help='size of each image batch')
parser.add_argument('--optimizer_pick', type=str, default="Adam", help='choose optimizer between Adam and SGD')
parser.add_argument('--model_cfg', type=str, help='cfg file path',required=True)
parser.add_argument('--weights_path', type=str, help='initial weights path',required=True)
parser.add_argument('--weights_path', type=str, help='initial weights path',default="sample-yolov3.weights")
parser.add_argument('--output_path', type=str, help='output weights path, by default we will create a folder based on current system time and name of your cfg file',default="automatic")
parser.add_argument('--dataset_path', type=str, help='path to image dataset',default="dataset/YOLO_Dataset/")
parser.add_argument('--num_epochs', type=int, default=2048, help='maximum number of epochs')
Expand Down
Loading

0 comments on commit 6c89f9c

Please sign in to comment.