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 Trains Community - Question: I Am Using 

Hi Trains community - question: I am using  http://Fast.ai  on pycharm (not jupyter). I was wondering if there's a way to show a loss and accuracy metrics such as tensorboard style during training in Trains
. Right now it shows "NO CHART DATA" message under results/plots. (the graphs under scalaras (gpu and machine) are showing fine)

  
  
Posted 5 years ago
Votes Newest

Answers 34


image

  
  
Posted 5 years ago

no, I meant to change the way it is reported. I'm still interested in the train_loss graph, naturally 🙂 but obviously it is reporting something that is the inverse of the train_loss, since in the graph it is exploding, and in reality (as reported in the terminal) it is decaying to 9e-2

  
  
Posted 5 years ago

it is on the scale of 15K...

  
  
Posted 5 years ago

The valid_loss and Accuracy are showing on the Tboard in the same number values as they show up on the terminal, but the train_loss is showing in a different scale and I can't figure out why. I did not change anything in the core files of either torc, Tboard or fastai, and used the intialization in the same way that you showed, and was on fastai docs, using learn.callback_fns.append(partial(LearnerTensorboardWriter, base_dir=tboard_path, name=taskName))

  
  
Posted 5 years ago

yes, that solved the errors, however the two lines "could not detect iteration reporting" and "reporting detected" a few moments later, still show up

  
  
Posted 5 years ago

Understood. If there is something I can tweak in the reporting, I couldn't find where I tweak it since it is supposed to be related to the one line of activation of the reporting learn.callback_fns.append(partial(LearnerTensorboardWriter, base_dir=tboard_path, name=taskName)) do you have any ideas what are the options I can do to change the report of the train_loss?

  
  
Posted 5 years ago

then this:

  
  
Posted 5 years ago

Hi MinuteWalrus85 ,

You are right and this is an observation about the reports on your experiment.
Onvce trains can't detect reports sending by the script, it will fallback to report iterations according to const time, until reports will be detected.

  
  
Posted 5 years ago

Good morning Alon, since you helped me so much getting tensorboard to show results yesterday, I'm hoping you can help me understand why some results I'm getting are strange:

  
  
Posted 5 years ago

i did not install tensorboard 😞

  
  
Posted 5 years ago

I will try and let you know in the next experiment

  
  
Posted 5 years ago

image

  
  
Posted 5 years ago

it isn't an error, but just an observation

  
  
Posted 5 years ago

let me see

  
  
Posted 5 years ago

MinuteWalrus85 thanks for the screenshot, asking about TB dashboard to understand where the issue is coming from.

Trains is patching TB stats and showing it to you in the web-app, so if the results are the same in TB dashboard, the reporting of the values can be wrong, if the TB dashboard and the web-app have different results, there can be an issue with web-app reporting

  
  
Posted 5 years ago

haven't tried yet

  
  
Posted 5 years ago

MinuteWalrus85 checking it

  
  
Posted 5 years ago

Thanks for letting me know, I'd be very happy to update.

  
  
Posted 5 years ago

image

  
  
Posted 5 years ago

the train_loss is on the second from left column (the far left is epoch num 30-36)

  
  
Posted 5 years ago

Hi MinuteWalrus85 .

Good news about fastai , the integration in almost done and a version will be release in the coming days :)

  
  
Posted 5 years ago

in the meantime, I got this error message, this time regarding Trains:

  
  
Posted 5 years ago

image

  
  
Posted 5 years ago

Hi MinuteWalrus85 ,

Do you have tensorboard installed too?

I installed trains , fastai , tensorboard and tensorboardx and run a simple example, can be view in this link -
https://demoapp.trains.allegro.ai/projects/bf5c5ffa40304b2dbef7bfcf915a7496/experiments/e0b68d0fe80a4ff6be332690c0d968be/execution

  
  
Posted 5 years ago

Here is an example of the results from terminal:

  
  
Posted 5 years ago

This is the whole Tboard

  
  
Posted 5 years ago

👍 , let me check that

  
  
Posted 5 years ago

This is the valin_loss, which is correct:

  
  
Posted 5 years ago

MinuteWalrus85 didn’t success to reproduce it, can you share with me your experiment (without any data, just how to reproduce)? We can continue in DM if you like

  
  
Posted 5 years ago

change the report of the train_loss?

Are you referring for not sending the train_loss results?

  
  
Posted 5 years ago
124K Views
34 Answers
5 years ago
one year ago
Tags