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
SteadyFox10
Moderator
10 Questions, 49 Answers
  Active since 10 January 2023
  Last activity 19 days ago

Reputation

0

Badges 1

44 × Eureka!
0 Votes
16 Answers
725 Views
0 Votes 16 Answers 725 Views
when using trains-server is there any limitation for the debug images in Metrics & Logs ? This small script show the behavior, the iteration kept is only the...
4 years ago
0 Votes
6 Answers
602 Views
0 Votes 6 Answers 602 Views
I use ignite and their ModelCheckpoint system to be able to resume a training in case of unexpected issue (the electricity shut down last week and our cluste...
3 years ago
0 Votes
1 Answers
641 Views
0 Votes 1 Answers 641 Views
3 years ago
0 Votes
5 Answers
572 Views
0 Votes 5 Answers 572 Views
I remember there is an environment variable to specify where my trains.conf | clearml.conf is but I could not remember the name of this env var. Can someone ...
3 years ago
0 Votes
2 Answers
714 Views
0 Votes 2 Answers 714 Views
Hi trains community, I see that for the trains-agent you have a docker option, did you plan to have any other container system like https://sylabs.io/docs/ i...
4 years ago
0 Votes
6 Answers
622 Views
0 Votes 6 Answers 622 Views
Hi, I have a self-hosted instance running quite well, pretty good job. I'm wondering if there is any way to have a read-only user? Is it available in the api...
3 years ago
0 Votes
9 Answers
611 Views
0 Votes 9 Answers 611 Views
I use the docker-compose.yml file and keep everything inside /opt/trains : tree -d . ├── config ├── data │ ├── elastic │ │ └── nodes │ │ └── 0 │ │ └── _state...
4 years ago
0 Votes
6 Answers
615 Views
0 Votes 6 Answers 615 Views
I want to retrieve the logged metrics to be able to save the best model from my training. This is my step: trains_logger = Task(...) args = parse_commandline...
3 years ago
0 Votes
30 Answers
692 Views
0 Votes 30 Answers 692 Views
I have a question regarding the deletion of archived experiments. Some of them can't be deleted and the error message is General data error (TransportError(5...
2 years ago
0 Votes
7 Answers
583 Views
0 Votes 7 Answers 583 Views
Is it possible to select a bunch of experiment and archive them all at once ? I tried with the checkbox but there is no option to archive them all. I do it o...
3 years ago
0 I Use The

I'm on linux, and this morning I restart it and everything was fine.

4 years ago
0 I Use The

I tried to removes all the images and content from docker with docker-compose down and docker rmi , also remove all the content in each directory of /opt/trains/ created by the containers, do you have any idea why this happens?

4 years ago
0 Hi, Does 'Trains' Save Scalars Somewhere In The Machine Similar To Log File?

To retrieve metrics from an experiment I use this:
` from trains_agent import APIClient

client = APIClient()

client.events.get_scalar_metric_data(task=task_id, metric="name_of_metric") `Thanks to AgitatedDove14 that point this to me.

3 years ago
0 I Remember There Is An Environment Variable To Specify Where My

Is it somewhere in the documentation ?

3 years ago
0 I Use

Pretty good job. I'll try to use it as soon as possible.

3 years ago
0 I Want To Retrieve The Logged Metrics To Be Able To Save The Best Model From My Training. This Is My Step:

Wow thanks a lot, I'll test it. I didn't even search in trains_agent documentation.

3 years ago
0 I Want To Retrieve The Logged Metrics To Be Able To Save The Best Model From My Training. This Is My Step:

It works well I just need to use the task.id for the task='' I tough I could use the task.name it's perfect thanks AgitatedDove14 .

3 years ago
0 I Want To Retrieve The Logged Metrics To Be Able To Save The Best Model From My Training. This Is My Step:

Is it possible to get all the iteration for one specific metric ? Lets say I have this metric logged. Will I be able to retrieve these series ?

3 years ago
0 Hi, I Have A Self-Hosted Instance Running Quite Well, Pretty Good Job. I'M Wondering If There Is Any Way To Have A Read-Only User? Is It Available In The

AgitatedDove14 This is what I expected for the community version. It would really nice to have a read-only link. My use case is when I have a merge request for a model modification I need to provide several informations for our Quality Management System one is to show that the experiment is a success and the model has some improvement over the previous iteration. Obviously I don't want the reviewer to see all my failed experiments 😉 . So yes it should be really nice to have read-only ...

3 years ago
4 years ago
0 When Using

Oh it works with an _ .

4 years ago
0 I Use

Wow, that really nice. I did almost the same code, TrainsLogger , TrainsSaver , and all the OutputHandler . I'll use your version instead and put any comment if I find something.

3 years ago
0 I Use

Thansk for the ouput_uri can I put in the ~/trains.conf file ?

3 years ago
0 When Using

Any reason for / to not work?

4 years ago
0 When Using

Thanks!

4 years ago
0 When Using

SuccessfulKoala55 Also I see that the images name are not ordered naturaly it's display like this image_name_1 , image_name_10 , image_name_2 , and so on, is it possible to have a natural order to see image_name_1 , image_name_2 , etc... ?

4 years ago
0 When Using

I'm in a process to setup a trains stack for my projects and so far it work great thank for this awesome work.

4 years ago
0 When Using

ok I'll go check

4 years ago
0 When Using

Ok thanks

4 years ago
0 When Using

It is in lexicographical ordering as you said.

4 years ago
0 When Using

Is this screenshot better?

4 years ago
0 When Using

I made the experiment on the allegroai demo server and it's the same https://demoapp.trains.allegro.ai/projects/fcf3f3fb1013434eb2001870990e5e94/experiments/6ed32a2b5a094f2da47e6967bba1ebd0/output/debugImages . I really think it's a technical limitation to not display all the image am I right ?

4 years ago
4 years ago
0 Hi There, I'M Training A Pytorch Model And Save It Every Epoch. It Seems Like The Model Wights Are Overridden And I Can'T Choose The Best Model After The Experiment Ends. This Feature Is Missing Or I'M Not Using The Library Well?

Oh sorry, I was thinking about ignite (I don't know why) not trains. The only way I know is to use a different name when saving. I personnaly use f"{file_name}_{epoch}_{iteration}" .

4 years ago
0 I Use The

If this issue happens again is there any log I can provide for help/debug ?

4 years ago
0 I Use The

dashboard

4 years ago
Show more results compactanswers