Closed iumyx2612 closed 3 years ago
Hi @iumyx2612, those messages are mostly innocuous. Those are warnings (W0807 <- "W" stands for warn there) and they would not impact operations of TensorBoard.
Now, I see that the graph plugin is able to display something from your SavedModel. While the visualization is not ideal, is there a reason why you think you cannot "view Graph properly" in TensorBoard?
Hi @iumyx2612, those messages are mostly innocuous. Those are warnings (_W_0807 <- "W" stands for warn there) and they would not impact operations of TensorBoard.
Now, I see that the graph plugin is able to display something from your SavedModel. While the visualization is not ideal, is there a reason why you think you cannot "view Graph properly" in TensorBoard?
It doesn't give me the arrow from blocks to blocks, and I can't expand each block to see what's inside. And I think it should display each block clearly like the below image
When I select on a block, I see "Subgraph: 12 nodes", Is there a way to expand this block? I want to display the full Graph if you know what I mean
In TensorFlow 2, they now have a concept of FunctionLibrary (the name of the node has "__function_library__"
) which basically yanks some nodes out as a sub graphs and, for those, TensorBoard does not do a great job at displaying them. As such, it is naturally for those to miss edges as you have noted. However, you should be able to double click on the FunctionLibrary node to expand the content inside.
In TensorFlow 2, they now have a concept of FunctionLibrary (the name of the node has "function_library") which basically yanks some nodes out as a sub graphs and, for those, TensorBoard does not do a great job at displaying them. As such, it is naturally for those to miss edges as you have noted. However, you should be able to double click on the FunctionLibrary node to expand the content inside.
Thank you so much
Consider Stack Overflow for getting support using TensorBoard—they have a larger community with better searchability:
https://stackoverflow.com/questions/tagged/tensorboard
Do not use this template for for setup, installation, or configuration issues. Instead, use the “installation problem” issue template:
https://github.com/tensorflow/tensorboard/issues/new?template=installation_problem.md
To report a problem with TensorBoard itself, please fill out the remainder of this template.
Environment information (required)
Please run
diagnose_tensorboard.py
(link below) in the same environment from which you normally run TensorFlow/TensorBoard, and paste the output here:Diagnostics
Diagnostics output
`````` --- check: autoidentify INFO: diagnose_tensorboard.py version e43767ef2b648d0d5d57c00f38ccbd38390e38da --- check: general INFO: sys.version_info: sys.version_info(major=3, minor=8, micro=10, releaselevel='final', serial=0) INFO: os.name: nt INFO: os.uname(): N/A INFO: sys.getwindowsversion(): sys.getwindowsversion(major=10, minor=0, build=19043, platform=2, service_pack='') --- check: package_management INFO: has conda-meta: True INFO: $VIRTUAL_ENV: None --- check: installed_packages INFO: installed: tensorboard==2.5.0 INFO: installed: tensorflow==2.4.0 INFO: installed: tensorflow-estimator==2.4.0 INFO: installed: tensorboard-data-server==0.6.1 --- check: tensorboard_python_version INFO: tensorboard.version.VERSION: '2.5.0' --- check: tensorflow_python_version 2021-08-07 14:29:53.001417: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully opened dynamic library cudart64_110.dll INFO: tensorflow.__version__: '2.4.0' INFO: tensorflow.__git_version__: 'v2.4.0-rc4-71-g582c8d236cb' --- check: tensorboard_data_server_version INFO: data server binary: None --- check: tensorboard_binary_path INFO: which tensorboard: b'E:\\Anaconda\\envs\\TFOD\\Scripts\\tensorboard.exe\r\nE:\\Work work\\Python\\3.7\\Scripts\\tensorboard.exe\r\nE:\\Anaconda\\Scripts\\tensorboard.exe\r\n' --- check: addrinfos socket.has_ipv6 = True socket.AF_UNSPEC =https://raw.githubusercontent.com/tensorflow/tensorboard/master/tensorboard/tools/diagnose_tensorboard.py
For browser-related issues, please additionally specify:
Issue description
I'm trying to visualize a *.pb model file on Tensorboard. I used
import_pb_to_tensorboard
to export a log and view it with Tensorboard When I launched Tensorboard it gave me these messages and the graph above