Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, Does Anyone Know Where Trains Stores Tensorboard Data? Because I Am Used To Using Tensorboard To Record Experimental Data And Store Data, I Hope I Can Access The Folder Where Tensorboard Stores Data When I Use Command Like

Hi, does anyone know where trains stores tensorboard data? Because I am used to using tensorboard to record experimental data and store data, I hope I can access the folder where tensorboard stores data when I use command like writer = SummaryWriter("runs/experiment1")

  
  
Posted 3 years ago
Votes Newest

Answers 2


Hi FierceFly22

Hi, does anyone know where trains stores tensorboard data

Tesnorboard data is stored wherever you point your file-writer to 🙂
What trains is doing is while tensorboard writes it's own data to disk, it takes the data (in-flight) and sends it to the trains-server. The trains-server puts everything in the DB, so later everything is viewable & searchable.
Basically you don't need to store your TB files after your experiment is done, you have all the data in the trains-server (accessible through the UI / code).
That said if you need more advanced TB features, like profiling tSNE etc, then you can open your RB protobuf file 🙂
Make sense?

  
  
Posted 3 years ago

Hi AgitatedDove14 ,
Got it. thank you for your reply 😄

  
  
Posted 3 years ago
525 Views
2 Answers
3 years ago
one year ago
Tags