Releases: LdDl/go-darknet
Releases · LdDl/go-darknet
New Version v1.3.7
New Version v1.3.6
What's new
- 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
UPDATE
- Update to last working (for us) AlexeyAB version of Darknet - AlexeyAB/darknet@f056fc3
- Proper calling of Close() on image instance in base example
- Replace network_predict() with network_predict_ptr()
- Call Close() on neural network in base example
- Replace free_network() with free_network_ptr()
New Version v1.3.0
Here is minor but usefull things we hope.
- Update to latest AlexeyAB version of Darknet - AlexeyAB/darknet@d65909f
- Added Darknet installation script for Linux users (see #12 )
- Added REST examples (closes #4 )
New Version v1.2.0 - Update to last version of AlexeyAB's implementation
- 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. - Version of AlexeyAB's Darknet is 9dc897d2c77d5ef43a6b237b717437375765b527 now.
Version v1.1.0
Detect memory leak and make it disappear
#6
Also updated to lastest AlexeyAB's fork (YOLO v4 works)
Darknet binding written in Go
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:
- 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
- Has GPU support (CUDA).
- Has download_data.sh scpirt to load YOLOv3 weights/cfg/classnames and sample image.
Future works:
- Add classic function for loading image from file system.
- Save predictions
- gRPC server example
- Updates according to AlexeyAB's fork