thtrieu / darkflow

Translate darknet to tensorflow. Load trained weights, retrain/fine-tune using tensorflow, export constant graph def to mobile devices
GNU General Public License v3.0
6.13k stars 2.08k forks source link

Inferencing 2 frozen models at the same time #1170

Open Sequential-circuits opened 4 years ago

Sequential-circuits commented 4 years ago

We are running inference on pb models with these commands on one particular product we trained and it works fine: it detects, shows a green box around it, etc options = {"pbLoad": "file.pb", "metaLoad": "file.meta", "threshold": $ tfnet2 = TFNet(options)

But we need to detect more than product, and we don´t want to have to merge .pb files to do that

Any suggestion on how?