You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2019. It is now read-only.
I would like to use the FC layers below prob layer, but I am not sure how I should do it.
I tried something like "graph.get_tensor_by_name("import/fc7:0") but it does not work.
Thank you
-Taeksoo
The text was updated successfully, but these errors were encountered:
Just found out that the names of FC tensors were not set in "caffe_to_tensorflow.py". I guess it was the reason why.
By the way, when I run "caffe_to_tensorflow.py", by "make", it runs into an error like below.
current context was not created by the StreamExecutor cuda_driver API: 0x3c6ab90; a CUDA runtime call was likely performed without using a StreamExecutor context
make: *** [vgg16.tfmodel] Aborted (core dumped)
It appears that Caffe and TensorFlow cannot be concurrently invoked (CUDA conflicts - even with set_mode_cpu). This makes it a two-stage process: first extract the parameters with convert.py, then import it into TensorFlow.
The conversion ran successfully after installing the CPU-only version of Tensorflow. Not great, but it works.
Hello, thank you for this great source code.
I would like to use the FC layers below prob layer, but I am not sure how I should do it.
I tried something like "graph.get_tensor_by_name("import/fc7:0") but it does not work.
Thank you
-Taeksoo
The text was updated successfully, but these errors were encountered: