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
EnviousStarfish54
Moderator
26 Questions, 157 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

151 × Eureka!
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Hi, does trains support plotting charts like ROC of precision recall curve?
5 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
And if Allegros trains doc on GitHub as well? I found some documentation are wrong and would like to make PRs along the way.
5 years ago
0 Votes
18 Answers
2K Views
0 Votes 18 Answers 2K Views
is there an enterprise version of trains? if yes, what are the addition features, the website shows allegros enterprise version that seems not related to tra...
5 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
Bug reporting: Just updated to trains==0.16.3. Tested with lightgbm==3.0.0 File "/home/nokchan/anaconda3/envs/cba/lib/python3.7/site-packages/trains/binding/...
4 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
Is there a way to set default "customizable column"? I want to removed the "started" column and add "description" as default.
4 years ago
0 Votes
17 Answers
2K Views
0 Votes 17 Answers 2K Views
Trains seems to fail to capture my conda environment, any idea? OS: Window 10
5 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
None . Is there a tab showing the resource usage(CPU/GPU per experiment? I would like to use it to better profiling my code)
5 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
4 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
if i had a trains server now, is there any migration guide to switch to clearml?
4 years ago
0 Votes
16 Answers
2K Views
0 Votes 16 Answers 2K Views
Is there a way to programatically define api_host/web_host?
5 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
I am using tasks = Task.get_tasks(project_name='project', task_name='partial_task_name_here') to retrieve my experiments metadata for analysis. I want to exp...
4 years ago
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K Views
Hi, I wonder if the Trains UI could save user UI view? It seems that if I order the column (red) and hit F5, it will re-order again. In contrast, if I move t...
5 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
I hit a issue that I cannot see my matplotlib plot, but it was shown in the panel. any idea?
5 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
Hi, I have a few questions regards to Publish Experiment , I would like to understand what is the use case for it? It turns a experiment into read-only(view)...
4 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Hi, currently we can add "Tags" on experiments. When filtering the tags in the dashboard, it seems to default to filter as a "OR" condition, is it possible t...
4 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
4 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Quest about clearml-task I found an example from documentation, how can I pass an argument without value? For example, my entrypoint looks like this original...
4 years ago
0 Votes
17 Answers
2K Views
0 Votes 17 Answers 2K Views
4 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
Thanks ClearML Team, great to see these requested features are released! Add metric snapshot plot to project overview UI - Show an aggregated view of all pro...
4 years ago
0 Votes
30 Answers
2K Views
0 Votes 30 Answers 2K Views
Hi, does anyone use mlflow / Weight & Biases / http://neptune.ai before, and how does that compare to allegroai-trains? I am trying to understand the tooling...
5 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
[Feature Request] - Support more common type for logging Currently Allegro doesn't support datetime ValueError: Only builtin types (str, int, str, float, lis...
4 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
4 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Is there a nicer way to program the color for report_scalar? By default it use a color scheme that is very hard to compare when I have multiple lines. I can ...
4 years ago
0 Votes
16 Answers
2K Views
0 Votes 16 Answers 2K Views
5 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
5 years ago
0 Votes
31 Answers
125K Views
0 Votes 31 Answers 125K Views
I am running trains=0.16.4 python==3.7.5 , and notice that the "Log" page sometimes didn't capture the console log from my program. Is this a known issue, an...
4 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

AgitatedDove14 Thanks! This seems to be a more elegant solution

5 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

I mean, once I add environment variable, can trains.conf overwrite it? I am guessing environment variable will have a higher hierarchy.

The things that I want to achieve is:
Block user to access to public server If they configure trains.conf, then it's fine

import os os.environ["TRAINS_API_HOST"] = "YOUR API HOST " os.environ["TRAINS_WEB_HOST"] = "YOUR WEB HOST " os.environ["TRAINS_FILES_HOST"] = "YOUR FILES HOST "

5 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

I need this as I want to write a wrapper for internal use.

I need to block the default behavior that link to public server automatically when user has no configuration file.

5 years ago
0 I Am Running Trains=0.16.4 Python==3.7.5 , And Notice That The "Log" Page Sometimes Didn'T Capture The Console Log From My Program. Is This A Known Issue, Anyone Have Experienced Similar Behavior?

I don't think it is running in subprocess, stdout/stderr is output in terminal. If I use print() it actually logged, but the logger info is missing.

4 years ago
0 Default Installation Of Trains-Server Exposes Only Logging Via Http Not Https, In Case The Server Has A Public Ip, What Is The Recommended Way For Increasing Security?

SuccessfulKoala55 Where can I find related documentation? I am not aware that I can configure this, I would like to create user myself.

4 years ago
0 Hi, How Can I Check If My Clearml-Agent Is Running Probably? I Setup A Local Server To Test, But Seems It Does Not Pick Up Any Job. In The Ui, I Saw The New Agent Was Registered (It Shown Up In The "Workers" Page) The Terminal Looks A Bit Weird, After S

Digest: sha256:407714e5459e82157f7c64e95bf2d6ececa751cca983fdc94cb797d9adccbb2f Status: Downloaded newer image for nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04 docker: Error response from daemon: OCI runtime create failed: container_linux.go:370: starting container process caused: process_linux.go:459: container init caused: Running hook #0:: error running hook: exit status 1, stdout: , stderr: nvidia-container-cli: initialization error: driver error: failed to process request: unknown.

4 years ago
0 I Hit A Issue That I Cannot See My Matplotlib Plot, But It Was Shown In The Panel. Any Idea?

I am not sure what are those example/1/2/3 are, I only have one chart

5 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

This will cause a redundant Trains session, I guess.

5 years ago
0 Hi

wow, new data version feature and session could be useful

4 years ago
0 I Am Running Trains=0.16.4 Python==3.7.5 , And Notice That The "Log" Page Sometimes Didn'T Capture The Console Log From My Program. Is This A Known Issue, Anyone Have Experienced Similar Behavior?

Could u give me some pointers where ClearML auto-capture log/stdout? I suspect as Kedro has configuration on logging and somehow ClearML fail to catch it.

4 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

I don't want to mess with the standard setup.

5 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

is it possible to overwrite if trains.conf did exist

5 years ago
0 Hi, What'S Storage Clearml Is Using? I Am Considering Self-Host Clearml On A Cloud Machine, While Separated The Data Storage With Our Own Machine (Reduce Network Cost) I Am Using Minio Current With Trains=0.16.4, If This Will Still Be An Valid Option For

Great, as long as it will continue to work with S3(Minio), it's good for me. I am already using MinIO with Trains (older version).

Was planning to do a upgrade soon.

4 years ago
0 I Am Using

It's for addition filtering only right? My use case is to prevent user accidentally querying the entire database.

I want to achieve something similar we would do in SQL

select * from user_query limit 100;

4 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

currently I do it in a hacky way. I call trains.backend_api Session, and check if 'demoapp' in web server URL.

5 years ago
0 Is There A Nicer Way To Program The Color For Report_Scalar? By Default It Use A Color Scheme That Is Very Hard To Compare When I Have Multiple Lines. I Can Change It Manually But I Do Not Want To Repeat It For Every Experiment.

So I found that if I change this plot, it seems changes across all the expeiment too? How did it cache this setting? could this be shared among users or only per user or it is actually cached by the browser only?

4 years ago
0 Hi, I Have A Few Questions Regards To

i.e. some files in a shared drive, then someone silently updated the files and all the experiments become invalid and no one knows when did that happened.

4 years ago
0 . Is There A Tab Showing The Resource Usage(Cpu/Gpu Per Experiment? I Would Like To Use It To Better Profiling My Code)

I also get this from the logging

TRAINS Monitor: GPU monitoring failed getting GPU reading, switching off GPU monitoring
5 years ago
0 Hi, I Have A Few Questions Regards To

Yup, I am only more familiar with the experiment tracking part, so I don't know if I have a good understanding before I have reasonable knowledge of the entire ClearML system.

VivaciousPenguin66 How are you using the dataset tool? Love to hear more about that.

4 years ago
0 How Can I Log My Configuration Like This? I Have A Dict Params = {'Data':{'Data_Key':123}, 'Model':{'Model_Key':123}}, But It Become Data/Datakey Instead Of An Foldable Config. In Addition, I Don'T Want To Name It As "General", Where Can I Change It?

In this case, I would rather use task.connect(), diff line by line is probably not useful for my data config. As shown in the example, shifting 1 line would result all remaining line different.

But this also mean I have to first load all the configuration to a dictionary first.

5 years ago
Show more results compactanswers