我使用tf.name_scope
創建了相對名稱範圍。如何獲得當前的TensorFlow名稱範圍
如何獲取當前的絕對名稱範圍?
從代碼看,tf.get_default_graph()._name_stack
看起來像是給了我,但看起來像一個非官方的方式。有沒有官方的方式? (我想不會,所以我做了一個upstream feature request)
(我實現了一堆的功能,如get_current_name_scope()
或reuse_name_scope()
here請注意,你需要混合tf.name_scope
和tf.variable_scope
時要小心。)
你有沒有想過如何做到這一點,而無需訪問上下文管理器?或者那是不可能的? –