Hello, I'm a newbie and I'm trying to convert the weight of yolov4tiny into .blob according to the luxonis instructions in Google Colab, but when converting to .pb I get the error No module named 'tensorflow.contrib', when I try to install the version that was tensorflow == 1.5, technically impossible. What to do in such a situation? Do you have a working converter for yolov4tiny?
P.s.
Initially I tried to run RGB & TinyYolo with spatial data from https://docs.luxonis.com/projects/api/en/latest/samples/SpatialDetection/spatial_tiny_yolo/#rgb-tinyyolo-with-spatial-data.

Is there a similar RGB & TinyYolo pipeline written for yolov6?

Hi @SerdjFity
The pipeline should be the same as far as structure goes. The only things that change are the NN model specifics:

  • blob path to your own model
  • anchors, anchor masks, confidence threshold, number of classes, IOU, etc..
  • RGB preview size (depends on the input layer of your NN)

Thanks,
Jaka