wildpig22
wildpig22
I'm having the same issue with mobilenet v2 ssd models: I'm using the model.ckpt generated by `export_inference_graph.py`. I tried to use `tf.train.import_meta_graph`, restore into a session, and pass session into...
@endeepak I've managed to get deconv working(sort of) with ssd mobilenet v2, thanks for your insight :) Here's what I did: ``` import os import sys import time import copy...
@BhagyeshVikani thanks! I've got one question though, since the node `FeatureExtractor/MobilenetV2/MobilenetV2/input` is after the preprosessing block, shouldn't we do the preprocessing(normalize value to range [-1.0,1.0]) manually before passing the image...