Skip to content

Releases: LdDl/go-darknet

New Version v1.3.7

17 Mar 10:42
Compare
Choose a tag to compare

What's new

  1. Just prepared go.mod to use github.com/LdDl/go-darknet instead of go-darknet

New Version v1.3.6

07 Mar 11:40
51c7e39
Compare
Choose a tag to compare

What's new

  1. According to #25 now we've gained performance boost on exchanging standard Image type to Darknet's one
    Thanks @lian

New Version v1.3.5

01 Feb 05:11
b8f4ad6
Compare
Choose a tag to compare

UPDATE

  1. Update to last working (for us) AlexeyAB version of Darknet - AlexeyAB/darknet@f056fc3
  2. Proper calling of Close() on image instance in base example
  3. Replace network_predict() with network_predict_ptr()
  4. Call Close() on neural network in base example
  5. Replace free_network() with free_network_ptr()

New Version v1.3.0

16 Oct 09:58
a039e75
Compare
Choose a tag to compare

Here is minor but usefull things we hope.

  1. Update to latest AlexeyAB version of Darknet - AlexeyAB/darknet@d65909f
  2. Added Darknet installation script for Linux users (see #12 )
  3. Added REST examples (closes #4 )

New Version v1.2.0 - Update to last version of AlexeyAB's implementation

11 Aug 09:17
df9804a
Compare
Choose a tag to compare
  1. Merged: #9
    C-function float network_predict(network *net, float *input) has been broken for CGO with new updates of Darknet.
    Using float *network_predict(network net, float *input) for now.
  2. Version of AlexeyAB's Darknet is 9dc897d2c77d5ef43a6b237b717437375765b527 now.

Version v1.1.0

16 May 12:12
420a747
Compare
Choose a tag to compare

Detect memory leak and make it disappear
#6

Also updated to lastest AlexeyAB's fork (YOLO v4 works)

Darknet binding written in Go

26 Feb 05:24
630ded7
Compare
Choose a tag to compare

Since this repository https://github.com/gyonluks/go-darknet is no longer maintained I decided to move on and make little different bindings for Darknet.
This bindings aren't for official implementation but for AlexeyAB's fork.

Added features:

  1. It is possible to load image.Image into []float32 slice and inference it to CGO. https://github.com/LdDl/go-darknet/blob/master/image.go#L62
  2. Has GPU support (CUDA).
  3. Has download_data.sh scpirt to load YOLOv3 weights/cfg/classnames and sample image.

Future works:

  1. Add classic function for loading image from file system.
  2. Save predictions
  3. gRPC server example
  4. Updates according to AlexeyAB's fork