- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I read document convert file checkpont to file pb. See in bellow (This is code convert a CRNN model to Intermediate Representation (IR))
from tensorflow.python.framework import graph_io frozen = tf.graph_util.convert_variables_to_constants(sess, sess.graph_def, ['shadow/LSTMLayers/transpose_time_major']) graph_io.write_graph(frozen, '.', 'frozen_graph.pb', as_text=False)
In my your model i don't know how find this parameter :['shadow/LSTMLayers/transpose_time_major'] .
링크가 복사됨
1 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Hi Pham,
This parameter is name of the output node. Kindly check your graph to know the name of output node.
Best Regards,
Surya
