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
Profile picture
WhimsicalLion91
Moderator
2 Questions, 4 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

2 × Eureka!
0 Votes
5 Answers
476 Views
0 Votes 5 Answers 476 Views
Hi all, A newbie question: How can I store single value results per experiment that will appear as metrics I can select in the experiments tables columns. My...
3 years ago
0 Votes
2 Answers
508 Views
0 Votes 2 Answers 508 Views
Hi all, is there an example in the documentation of how to use logger.report_line_plot()?
3 years ago
0 Guess We'Re Back To Basics How Do I Report A Single Scalar With No Iteration Dimension - Something I Can Put As One Of The Columns In The Experiments Table?

You can just use report_scalar:
from trains import Logger Logger.current_logger().report_scalar("title", "series", iteration=0, value=1337)Then you can select it as a metric in the experiment tale.

3 years ago
0 Hi All, A Newbie Question: How Can I Store Single Value Results Per Experiment That Will Appear As Metrics I Can Select In The Experiments Tables Columns. My Reference Is The "Tracking Leaderboards" Tutorial.

Worked. Thanks. What would you say the use case for running an experiment with iterations? I see that per metrics I send using the report_scalar() it will show me the value of the last iteration in the experiment table.

3 years ago
0 Hello, Is There A Way To Export Experiment Results From Multiple/All Experiments To Something Like A Csv File?

AgitatedDove14 I'd say that a specific use case is when using the demo server. you'd like to export all the data when you started with it and want to migrate to your own server without the hassle of running everything again.

3 years ago