yolov5-pip

Packaged version of ultralytics/yolov5 + many extra features

GPL-3.0 License

Downloads
187.4K
Stars
289
Committers
10
yolov5-pip - v7.0.13 Latest Release

Published by fcakyon about 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.12...7.0.13

yolov5-pip - v7.0.12

Published by fcakyon over 1 year ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.11...7.0.12

yolov5-pip - v7.0.11

Published by fcakyon over 1 year ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.10...7.0.11

yolov5-pip - v7.0.10

Published by fcakyon over 1 year ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.9...7.0.10

yolov5-pip - v7.0.9

Published by fcakyon over 1 year ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.8...7.0.9

yolov5-pip - v7.0.8

Published by fcakyon over 1 year ago

Roboflow Integration

$ yolov5 train --data DATASET_UNIVERSE_URL --weights yolov5s.pt --roboflow_token YOUR_ROBOFLOW_TOKEN

Where DATASET_UNIVERSE_URL must be in https://universe.roboflow.com/workspace_name/project_name/project_version format.

What's Changed

New Contributors

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.7...7.0.8

yolov5-pip - v7.0.7

Published by fcakyon almost 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.6...7.0.7

yolov5-pip - v7.0.6

Published by fcakyon almost 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.5...7.0.6

yolov5-pip - v7.0.5

Published by fcakyon almost 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.4...7.0.5

yolov5-pip - v7.0.4

Published by fcakyon almost 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.3...7.0.4

yolov5-pip - v7.0.3

Published by fcakyon almost 2 years ago

🤗 HuggingFace Hub Integration

  • Use yolov5 models from hub:
import yolov5

# load model
model = yolov5.load('fcakyon/yolov5s-v7.0')

# set image
img = 'https://github.com/ultralytics/yolov5/raw/master/data/images/zidane.jpg'

# perform inference
results = model(img, size=640)

# show detection bounding boxes on image
results.show()
  • Fine-tune yolov5 models from hub:
yolov5 train --img 640 --batch 16 --weights fcakyon/yolov5s-v7.0 --epochs 10 --device cuda:0
  • Automatically push fine-tuned weight and training logs to hub (with autogenerated model card):
yolov5 train --data data.yaml --weights yolov5s.pt --hf_model_id username/modelname --hf_token YOUR-HF-WRITE-TOKEN

Available models: https://huggingface.co/models?other=yolov5

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.2...7.0.3

yolov5-pip - v7.0.2

Published by fcakyon almost 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.1...7.0.2

yolov5-pip - v7.0.1

Published by fcakyon almost 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/7.0.0...7.0.1

yolov5-pip - v7.0.0

Published by fcakyon almost 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/6.2.3...7.0.0

yolov5-pip - v6.2.3

Published by fcakyon about 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/6.2.2...6.2.3

yolov5-pip - v6.2.2

Published by fcakyon about 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/6.2.1...6.2.2

yolov5-pip - v6.2.1

Published by fcakyon about 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/6.2.0...6.2.1

yolov5-pip - v6.2.0

Published by fcakyon about 2 years ago

New Features

Classify

Train/Val/Predict with YOLOv5 image classifier:

$ yolov5 classify train --img 640 --data mnist2560 --weights yolov5s-cls.pt --epochs 1
$ yolov5 classify predict --img 640 --weights yolov5s-cls.pt --source images/
from yolov5.classify import train, val, predict

train.run(imgsz=640, data='mnist2560.yaml')
val.run(imgsz=640, weights='yolov5s-cls.pt')
predict.run(imgsz=640)
import yolov5

model = yolov5.load('yolov5s-cls.pt')

Segment

Train/Val/Predict with YOLOv5 instance segmentation model:

$ yolov5 segment train --img 640 --weights yolov5s-seg.pt --epochs 1
$ yolov5 segment predict --img 640 --weights yolov5s-seg.pt --source images/
from yolov5.segment import train, val, predict

train.run(imgsz=640, data='coco128.yaml')
val.run(imgsz=640, weights='yolov5s-seg.pt')
predict.run(imgsz=640)
import yolov5

model = yolov5.load('yolov5s-seg.pt')

What's Changed

New Contributors

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/6.1.9...6.2.0

yolov5-pip - v6.1.9

Published by fcakyon about 2 years ago

yolov5-pip - v6.1.8

Published by fcakyon about 2 years ago

What's Changed

Full Changelog: https://github.com/fcakyon/yolov5-pip/compare/6.1.7...6.1.8

Package Rankings
Top 2.43% on Pypi.org