-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Why does tensorboard‘s memory usage keep increasing #3747
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
core:backend
stat:awaiting tensorflower
theme:performance
Performance, scalability, large data sizes, slowness, etc.
Comments
@b675987273, |
But the tensorboard have the function to figure out which file is a event file. I still not sure why the image cost lots of memory. Could you tell me why. def IsTensorFlowEventsFile(path):
"""Check the path name to see if it is probably a TF Events file.
Args:
path: A file path to check if it is an event file.
Raises:
ValueError: If the path is an empty string.
Returns:
If path is formatted like a TensorFlowEventsFile. Dummy files such as
those created with the '.profile-empty' suffixes and meant to hold
no `Summary` protos are treated as true TensorFlowEventsFiles. For
background, see: https://github.com/tensorflow/tensorboard/issues/2084.
"""
if not path:
raise ValueError("Path must be a nonempty string")
return "tfevents" in tf.compat.as_str_any(os.path.basename(path)) |
#766 I find a relative issue. Emm very interesting. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
core:backend
stat:awaiting tensorflower
theme:performance
Performance, scalability, large data sizes, slowness, etc.
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 sameenvironment from which you normally run TensorFlow/TensorBoard, and
paste the output here:
For browser-related issues, please additionally specify:
Issue description
Please describe the bug as clearly as possible. How can we reproduce the
problem without additional resources (including external data files and
proprietary Python modules)?
My tensorboard runs as docker container. Then it is weird that the memory usage keep increasing until oom. It is the command
tensorboard --logdir /tmp/data/ --bind_all
.There are lots of jpg in my tfevent file. Does it matter?
The text was updated successfully, but these errors were encountered: