ultralytics / xview-yolov3

xView 2018 Object Detection Challenge: YOLOv3 Training and Inference.
https://docs.ultralytics.com
GNU Affero General Public License v3.0
252 stars 57 forks source link

About this yolo-v3 #21

Closed stevenXS closed 4 years ago

stevenXS commented 4 years ago

@glenn-jocher ,Hi, Can I use this version-"xview-yolov3" to train and inference on coco2014 or coco2017 dataset. It looks more succinct.

Thank you for your excellent codes.

glenn-jocher commented 4 years ago

Sure. For 2017:

git clone https://github.com/ultralytics/yolov3
bash yolov3/data/get_coco2017.sh  # 19GB
cd yolov3
pip install -U -r requirements.txt
python train.py --data coco2017.data

For 2014:

git clone https://github.com/ultralytics/yolov3
bash yolov3/data/get_coco2014.sh  # 19GB
cd yolov3
pip install -U -r requirements.txt
python train.py --data coco2014.data
stevenXS commented 4 years ago

@glenn-jocher Thanks a lot.

glenn-jocher commented 4 years ago

@stevenalexis sure. Just to be clear, these commands use our main yolov3 repo, not this repo. https://github.com/ultralytics/yolov3

stevenXS commented 4 years ago

@glenn-jocher thanks for your advice.

github-actions[bot] commented 4 years ago

This issue is stale because it has been open 30 days with no activity. Remove Stale label or comment or this will be closed in 5 days.

glenn-jocher commented 10 months ago

@stevenXS you're welcome! Feel free to reach out if you have any more questions. Good luck with your training!