Skip to main content

YOLOv4 implementation with Tensorflow 2

Project description

tf-yolov4

PyPI version Upload Python Package

YOLOv4 implementation with Tensorflow 2.

Install

pip instal tf-yolov4

Example

Prediction

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

Load Darknet weight

import yolov4

yo = yolov4.YOLOv4(num_classes=10)
yo.load_darknet_weights('/path/to/darknet_weight')

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.4.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

tf_yolov4-1.0.4-py3-none-any.whl (21.6 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