Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an no-op (pass-through) operation in tensorflow?

Tags:

tensorflow

As per title. I'd like to make use of such operation to rename the nodes and better organize a graph. Or is there other recommended practice for renaming an existing node in the graph? Thanks!

like image 654
Ying Xiong Avatar asked Jun 21 '16 16:06

Ying Xiong


1 Answers

There is tf.no_op which allows you to add an operation which does nothing.

like image 112
Lenar Hoyt Avatar answered Sep 20 '22 03:09

Lenar Hoyt