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
ElegantKangaroo44
Moderator
5 Questions, 15 Answers
  Active since 10 January 2023
  Last activity 13 days ago

Reputation

0

Badges 1

9 × Eureka!
0 Votes
3 Answers
553 Views
0 Votes 3 Answers 553 Views
Hey
Hey AgitatedDove14 got another question! In the profile page in the webUI, there's a "Send anonymous usage data" setting. Could you please let me know what d...
3 years ago
0 Votes
9 Answers
526 Views
0 Votes 9 Answers 526 Views
Hi
Hi AgitatedDove14 , got a question regarding programmatically getting the best model from a task (moving here to not pollute the thread in ignite). Say I tra...
3 years ago
0 Votes
0 Answers
575 Views
0 Votes 0 Answers 575 Views
Congrats, well deserved!
3 years ago
0 Votes
10 Answers
505 Views
0 Votes 10 Answers 505 Views
Hi there, There seems to be an issue in the web ui -> viewing plots in "view in experiment table" doesn't respect the "scalars to display" one sets when view...
3 years ago
0 Votes
34 Answers
4K Views
0 Votes 34 Answers 4K Views
hey there Have the following issue after upgrading server and trains to 0.16: Error 100 : General data error (TransportError(503, 'search_phase_execution_exc...
3 years ago
0 Hi

Good news:
ย newย 

best_model

ย is saved, add a tagย 

best

,
Already supported, (you just can't see the tag, but it is there :))

Interesting! Could you point me where the tagging happens? Also, by "see" do you mean UI? I tried doing task.models["outputs"][-1].tag but there's no property tag ( AttributeError: 'Model' object has no attribute 'tag' , seems that only OutputModel s have the tag property?)

I'll answer specifically for ignite on y...

3 years ago
0 Hi

I'd prefer to use config_dict, I think it's cleaner (as a workaround for metadata). However, since I'm using ignite, I think I have no way to actually do that, or at least i'm not aware of it.

But I think that whatever way one chooses, you will have to go through N best models right after training and find the best one (because of the issue we're discussing on ignite).

I think ideal would be one of the two:
Only store a single model_best . After training you just find the model with t...

3 years ago
0 Hi

So, using ignite I do the following:
` task.phases['valid'].add_event_handler(
Events.EPOCH_COMPLETED(every=1),
Checkpoint(to_save, TrainsSaver(output_uri=self.checkpoint_path), 'best', n_saved=1,
score_function=lambda x: task.phases['valid'].state.metrics[self.monitor]
if self.monitor_mode == 'max' else
-task.phases['valid'].state.metrics[self.monitor],
score_name=sel...

3 years ago
0 Hey

Great thanks!

3 years ago
0 Hi, I Started A Trains-Agent (0.15) In Services Mode (Full Command:

AgitatedDove14 we have switched to a 8 core 16 gb ram machine and haven't faced the issue since. We'll let you know if it happens. But I'm pretty confident it was the size of the machine that caused it (as I mentioned it was a 1 cpu 1.5gb ram machine)

3 years ago
0 Hi, Together With

Just checked, it did pass, training finished and all 200 models saved ๐Ÿ™‚

3 years ago
0 Hi, Together With

Thanks for the quick responses and support too! ๐Ÿ™‚

3 years ago
0 Hi, I Started A Trains-Agent (0.15) In Services Mode (Full Command:

AgitatedDove14 Do we know what the User aborted: stopping task (3) means? It's different than when you actually abort a task yourself: User aborted: stopping task (1) .

I think that the problem happened because the VM we were using for the service queue workers was quite small (1 cpu, 1.5 gb ram), and the error message above might point to that.
We switched to a bigger one and will let you know if that was the problem.

3 years ago