tensorflow: tensorboard: graph visualization failed, undefined

In Chrome it says: "Graph visualization failed: TypeError: Connot read property ‘length’ of undefined.

In Firefox it says: “Graph visualization failed: TypeError: rawNodes is undefined”

I have attached the events file (appended ‘.txt’ so it Github would accept it.) events.out.tfevents.1471882692.JMugan.local.txt

When I run with inspect, I get

======================================================================
Processing event files... (this can take a few minutes)
======================================================================

Found event files in:
/Users/jmugan/tensorlog

These tags are in /Users/jmugan/tensorlog:
audio -
histograms -
images -
scalars
   exp_cost
   perplexity
   train_cost
======================================================================

Event statistics for /Users/jmugan/tensorlog:
audio -
graph
   first_step           0
   last_step            0
   max_step             0
   min_step             0
   num_steps            1
   outoforder_steps     []
histograms -
images -
scalars
   first_step           23210
   last_step            23230
   max_step             23230
   min_step             23210
   num_steps            3
   outoforder_steps     []
sessionlog:checkpoint -
sessionlog:start -
sessionlog:stop -
======================================================================

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Reactions: 1
  • Comments: 15 (6 by maintainers)

Most upvoted comments

I think @3rd3 is right that this is really a counter-intuitive API, rather than a user error. I’m working on re-writing the API for writing summaries and events in advance of the tensorflow 1.0 release, and I’ll keep this issue in mind.

Maybe you don’t have a graph defined on the session at that point? Did you already construct your tensorflow graph at the time you invoke that line of code?

I think we’ll need you to post a reproduction if we are going to debug this further. Preliminarily, it looks like it’s an issue with your instantiation of the summary writer, not with the graph visualizer.