Open gpcbitnik opened 4 years ago
Oh, this is so cool. I suspect the main reason would be tensorflow version issue. There's also a docker image available. Have you tried them?
Hi, Thank you to take time to answer me :) I'm not sur that is a tensorflow issue. I succesfully ran the run_lfnet.py and got the image result (as explain in your readme) and you provide a requirements.txt with the version (thank's a lot for that!) I think it's just because i am a begginner with tensorflow and i'm not understanding your model architectur and all what am i doing. When i display the original graph in tensorboard, i see a subgraph named ConvOnlyResnet with the node Save as input and MSDeepDet as one of his output. In MSDeepDet subgraph, i see an other subgraph call ConvOnlyRestnet and each node of that one take as input the first ConvOnlyResnet. Is it a training trick or something like that? or there is 2 subgraph with that name? the first ConvOnlyRestnet is also not linked to the placeholder node (the input node, am i wrong?) so, how can it be evolve during the training process? [image: originalGraph.png]
When i display de frozen model, they are still the 2 subgraph, but the first one has no input (and it is not linked to the placeholder nodes) Can you explain the aims of the first convonlyresnet? frozen graph image : [image: frozentxt.png] kind regards
Le mer. 4 déc. 2019 à 18:35, Kwang Moo Yi notifications@github.com a écrit :
Oh, this is so cool. I suspect the main reason would be tensorflow version issue. There's also a docker image available. Have you tried them?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/vcg-uvic/lf-net-release/issues/17?email_source=notifications&email_token=AKNUOCLMYOOZC4MUOXHAMIDQW7S75A5CNFSM4JVKOBZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEF534VI#issuecomment-561757781, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKNUOCJWALK2DDVM254WK6TQW7S75ANCNFSM4JVKOBZQ .
Hi, it seems your image decided to go to the void :-( What I suspect is that these could be remnants of our hasty development, but I am not entirely sure. @xyukiono Can you perhaps try to chime in?
try to add the image again frozen Graph original Graph
Hello, i try to freeze your model in order to use it with opencv dnn module to test it in my application. i frozen the model using this lines :
and then i use the thoses lines to optimze the networks
but i get some warnings
thoses nodes that generate warnings are the nodes with ConvOnlyRestNet as an input. this bloc have no relation with the placeholder node so how can it get the input blob?
there is something i'm not understanding, could you help me please? kind regards