Open
Description
I have been working on writing a final layer retrain for object detection with the YOLOv3 model. I am looking at the following Python example, writing implementation for it in C# on ML.NET, and using TF.NET for python bindings:
https://github.com/YunYang1994/tensorflow-yolov3
I have written some missing bindings already, however the following are some that I need assistance for in order to load label and truth Tensors and compute the confidence, classification and GIOU loss functions for YOLO:
- np: min, max, copy, full, newaxis
- cv2: warpAffine, imread, cvtColor
- tf: train.ExponentialMovingAverage, trainable_variables, no_op(), GraphKeys
For the OpenCV bindings, I found a .NET wrapper called Emgu CV that we could use: http://www.emgu.com/wiki/index.php/Main_Page
Thanks