Skip to main content

YOLOv4 implementation with Tensorflow 2

Project description

tf-yolov4

YOLOv4 implementation with Tensorflow 2.

Example

import numpy as np
import PIL.Image
import yolov4

# Default: num_classes=80
yo = yolov4.YOLOv4(num_classes=80)

# Default: weights_path=None
# num_classes=80 and weights_path=None: Pre-trained COCO model will be loaded.
# num_classes!=80 and weights_path=None: Pre-trained backbone and SPP model will be loaded.
# Otherwise: User-defined weight file will be loaded.
yo.load_weights(weights_path=None)

img = np.array(PIL.Image.open('./data/sf.jpg'))

# The image with predicted bounding-boxes is created if `debug=True`
boxes, classes, scores = yo.predict(img, debug=True)

output

TODO

  • Prediction
  • Load Darknet weight file
  • Pre-trained model
  • Basic training function and Loss definition
  • Label-smoothed BCE loss
  • c-IoU loss
  • Training data augmentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tf-yolov4-1.0.1.tar.gz (9.8 kB view hashes)

Uploaded Source

Built Distribution

tf_yolov4-1.0.1-py3-none-any.whl (21.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page