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
PompousBeetle71
Moderator
11 Questions, 49 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

49 × Eureka!
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
Hi, I've recently upgraded to 0.15.1 from 0.14.2, and for some reason a code that previously worked in which I'm getting the tags of a model using InputModel...
4 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Hi, another question. I tried to not auto_connect_arg_parser but in that case I need to do the Task.init before I'm parsing the arguments. I don't want that ...
4 years ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
Hi everyone, Additional arguments to the script execution, is it possible? how can it be done? So at the moment when my script is being executed the sys.argv...
4 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
4 years ago
0 Votes
9 Answers
964 Views
0 Votes 9 Answers 964 Views
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 exp...
4 years ago
0 Votes
6 Answers
964 Views
0 Votes 6 Answers 964 Views
I wanted to suggest something. We're creating a lot of projects and it starts getting a bit difficult to navigate through them. I think an option to have a h...
4 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Hi, I'm having some issues that I can't seem to find where the problem is or how to solve it. I'm running some code on the worker when I'm trying to download...
4 years ago
0 Votes
16 Answers
1K Views
0 Votes 16 Answers 1K Views
Hi, I'm getting a lot of the following logs trains.frameworks - WARNING - Could not retrieve model location, skipping auto model logging I'm fine with it and...
4 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
Hi all, After solving my multiprocessing issue I've found the following issue: I have a machine with 2 GPUs. Starting an agent there specifying --gpus all di...
4 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
4 years ago
0 Votes
24 Answers
1K Views
0 Votes 24 Answers 1K Views
Hi there, I've encountered a problematic behavior in python. When defining an argument a default value of None connecting to trains server then copy the task...
4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

I use torch and yes, I use save so your code will catch it.

4 years ago
0 Hi Everyone, Additional Arguments To The Script Execution, Is It Possible? How Can It Be Done? So At The Moment When My Script Is Being Executed The

AgitatedDove14 Hi, So I solve that by passing to the created processes the arguments injected into the argprase as part of the commandline. The examples helped.

4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

AgitatedDove14 I've tried the drastic measure suggested above as I had a log file of 1gb filled with the trains.frameworks - WARNING - Could not retrieve model location, skipping auto model logging
It didn't work :S

4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

the solution that worked: [logging.getLogger(name).setLevel(logging.ERROR) for name in logging.root.manager.loggerDict if "trains" in name]

4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

AgitatedDove14 It didn't help 😕

4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

AgitatedDove14 thanks, I'll try

4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

AgitatedDove14
These were the loggers names I can see locally running the code, it might differ running remotely.
['trains.utilities.pyhocon.config_parser', 'trains.utilities.pyhocon', 'trains.utilities', 'trains', 'trains.config', 'trains.storage', 'trains.metrics', 'trains.Repository Detection']
regarding repreduce it, have a long data processing after initializing the task and before setting the input model/output model.

4 years ago
0 Hi, I'M Getting A Lot Of The Following Logs

AgitatedDove14 Drastic indeed, I belive I will lose all the trains logs that way. In that case I prefer to keep the redundant logs.
If you'll find a more specific solution I'll love to know what it is 🙂

4 years ago
0 Hi There, I'Ve Encountered A Problematic Behavior In Python. When Defining An Argument A Default Value Of

yes, there's a use for empty strings, for example in text generation you may generate the next word given some prefix, the prefix may be an empty string.

4 years ago
0 Hi There, I'Ve Encountered A Problematic Behavior In Python. When Defining An Argument A Default Value Of

the version of the agent (the worker that received the job was 0.14.1)
the one that created the template was 0.14.2

4 years ago
0 Hi, I'Ve Recently Upgraded To 0.15.1 From 0.14.2, And For Some Reason A Code That Previously Worked In Which I'M Getting The Tags Of A Model Using

TimelyPenguin76 the tags names are 'Epoch 1', 'Step 5705'
the return value of the InputModel(<Put a string copy from the UI with the tag id>).tags is an empty array.

4 years ago
0 Hi, Another Question. I Tried To Not

I've solved the first part by importing trains after parsing the arguments. Still not sure about the second part of my question.

4 years ago
0 Hi There, I'Ve Encountered A Problematic Behavior In Python. When Defining An Argument A Default Value Of

AgitatedDove14 When the default is None I expect the default value to be None even if the type is str. But I'll use your recommendation 🙂

4 years ago
Show more results compactanswers