Chrome tracing gives blank page when load JSON file from Tensorflow Timeline

google-chrome, json, python, tensorflow

Solution

I ended up finding out that chrome://tracing is unable to open files that are larger than about 300MB

Problem

I'm profiling a TensorFlow run using Timeline as is explained in this answer Can I measure the execution time of individual operations with TensorFlow?. My model contains a big number of parameters, so the generated json for each run is pretty big (about 400MB). When I try to load the json into chrome://tracing, although, nothing shows up: What can this be?

Original source

Related problems