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
GreasyPenguin14
Moderator
29 Questions, 62 Answers
  Active since 10 January 2023
  Last activity 3 months ago

Reputation

0

Badges 1

61 × Eureka!
0 Votes
4 Answers
797 Views
0 Votes 4 Answers 797 Views
2 years ago
0 Votes
13 Answers
177 Views
0 Votes 13 Answers 177 Views
Maybe this is more a git question than a ClearML question, but how do I get the CLEARML_AGENT_GIT_USER and CLEARML_AGENT_GIT_PASS for step 11 in https://alle...
3 years ago
0 Votes
24 Answers
692 Views
0 Votes 24 Answers 692 Views
Hi, is it possible to specify per experiment (task in clearml) where the results (artifacts) are saved?
3 years ago
0 Votes
1 Answers
614 Views
0 Votes 1 Answers 614 Views
2 years ago
0 Votes
4 Answers
693 Views
0 Votes 4 Answers 693 Views
From the getting started: "If CLEARML_AGENT_GIT_USER / CLEARML_AGENT_GIT_PASS are not provided, then ClearML Agent Services will not be able to access any pr...
3 years ago
0 Votes
11 Answers
696 Views
0 Votes 11 Answers 696 Views
Hi, I noticed that clearml does not work together with the debugger in PyCharm. Everytime I use the debugger I have to first comment out the clearml code. Is...
3 years ago
0 Votes
6 Answers
727 Views
0 Votes 6 Answers 727 Views
Hi, when using the logger.report_table() method ( https://allegro.ai/clearml/docs/docs/examples/reporting/pandas_reporting.html#reporting-csv-files-as-tables...
3 years ago
0 Votes
3 Answers
698 Views
0 Votes 3 Answers 698 Views
from clearml import Dataset # Preprocessing code here dataset = Dataset.create(dataset_name='dataset name',dataset_project='dataset project') dataset.add_fil...
3 years ago
0 Votes
1 Answers
662 Views
0 Votes 1 Answers 662 Views
Hi, is there a way to not upload results by default to the clearml demo server?
3 years ago
0 Votes
4 Answers
666 Views
0 Votes 4 Answers 666 Views
3 years ago
0 Votes
2 Answers
641 Views
0 Votes 2 Answers 641 Views
2 years ago
0 Votes
5 Answers
629 Views
0 Votes 5 Answers 629 Views
3 years ago
0 Votes
6 Answers
798 Views
0 Votes 6 Answers 798 Views
3 years ago
0 Votes
2 Answers
662 Views
0 Votes 2 Answers 662 Views
agent-services: networks: - backend container_name: trains-agent-services image: allegroai/trains-agent-services:latest restart: unless-stopped privileged: t...
3 years ago
0 Votes
3 Answers
756 Views
0 Votes 3 Answers 756 Views
3 years ago
0 Votes
11 Answers
697 Views
0 Votes 11 Answers 697 Views
Hi, is it possible to query all experiments in a project and get the best performing one (sorted by one metric)? Something similar as search_runs in mlflow (...
3 years ago
0 Votes
17 Answers
702 Views
0 Votes 17 Answers 702 Views
Hi, when I use the slack monitoring service it creates a link with task.get_output_log_web_page() However, this gives something like http://apiserver:8080/pr...
3 years ago
0 Votes
4 Answers
676 Views
0 Votes 4 Answers 676 Views
Hi, we use clearml to track all our experiments. For each experiment the accuracy the logged for both the training and the test set: self.logger.report_scala...
3 years ago
0 Votes
0 Answers
655 Views
0 Votes 0 Answers 655 Views
Hi all, I am following the exact same steps as in the "Getting Started": https://allegro.ai/clearml/docs/docs/deploying_clearml/clearml_server_linux_mac.html...
3 years ago
0 Votes
1 Answers
731 Views
0 Votes 1 Answers 731 Views
2 years ago
0 Votes
3 Answers
820 Views
0 Votes 3 Answers 820 Views
I read that clearml-data stores only the difference between versions. Is this only working for text files or also for big files like medical imaging?
3 years ago
0 Votes
0 Answers
693 Views
0 Votes 0 Answers 693 Views
This is from the slack alerts console: > Environment setup completed successfully Starting Task Execution: ClearML experiment monitor Slack service ClearML r...
3 years ago
0 Votes
30 Answers
678 Views
0 Votes 30 Answers 678 Views
2 years ago
0 Votes
9 Answers
759 Views
0 Votes 9 Answers 759 Views
from datetime import datetime import hashlib from clearml import Task previous_timestamp = 0 task_filter = {} task_filter.update( { 'page_size': 100, 'page':...
3 years ago
0 Votes
2 Answers
709 Views
0 Votes 2 Answers 709 Views
Hi, what is the correct way to get all the failed and aborted experiments? client = APIClient() tasks = client.tasks.get_all( system_tags=["failed", "aborted...
3 years ago
0 Votes
9 Answers
704 Views
0 Votes 9 Answers 704 Views
How can I test scripts that use clearml in a CI environment? The integration tests run in a docker container without access to a clearml server, so I get the...
2 years ago
0 Votes
2 Answers
659 Views
0 Votes 2 Answers 659 Views
Is there a recommended way to deal with ClearML in Continuous Integration pipelines? I have an integration test running in the CI, but now it writes to the p...
3 years ago
0 Votes
4 Answers
804 Views
0 Votes 4 Answers 804 Views
3 years ago
0 Votes
4 Answers
711 Views
0 Votes 4 Answers 711 Views
What is the maximum length for the experiment name? I noticed that with very long names errors can occur
3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

Yes I see:

"The default location for output models and other artifacts. If True is passed, the default files_server will be used for model storage. In the default location, ClearML creates a subfolder for the output. The subfolder structure is the following: <output destination name> / <project name> / <task name>.<Task ID>"

So it makes a folder in the output destination <project_name>/<task name>.<Task ID>. It is not possible to specify the full output destination right?

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

I see, will it be possible in the future to directly write custom/not supported formats to the folder? Because we are working with very big files, having them stored at multiple locations is something we try to avoid

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

Okay, so I have to first save the generated image somewhere and then with logger.report_media it is copied to the folder?

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

It is for storing the predictions a trained model makes, so two different models do create slightly different images

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

Old legacy code that has its own folder structure per experiment. I can also do it the other way around. Does task.get_output_destination() return the folder including project name and <task_name>.<task_id>?

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

I see task.get_output_destination() returns a url like http://localhost:8081 . Is it possible to get the folder with the artifacts/models?

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

Yes, now I new unique folder is created per experiment where the predictions are saved. That works. The only thing is that now there is the folder that clearml makes for an experiment and the folder that saves the resuts. So two folders with artifacts per experiment. I was wondering if there was a more efficient solution and if it could be combined.

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

It is the folder the clearml creates and the folder we create ourself to store the predictions

3 years ago
0 Hi, When Using The Logger.Report_Table() Method (

Any idea when this will be fixed?

3 years ago
0 Hi, Is It Possible To Specify Per Experiment (Task In Clearml) Where The Results (Artifacts) Are Saved?

Okay, I am working with medical images. And when running a testing script I want to save the predictions (also big medical images of another modality). What happens when I do logger.upload_artifact(..). Then a file is copied to this folder?

3 years ago
0 Hi, When I Use The Slack Monitoring Service It Creates A Link With

btw the same happens when I try this on localhost

# ClearML SDK configuration file api { # Notice: 'host' is the api server (default port 8008), not the web server. api_server: web_server: files_server: # Credentials are generated using the webapp, # Override with os environment: CLEARML_API_ACCESS_KEY / CLEARML_API_SECRET_KEY

3 years ago
0 Sometimes I Notice That At The End Of An Experiment Clearml Keeps Hanging (Something With Repository Detection?) And The Script Does Not End. Do More People See This? Especially In Our Continuous Integration Pipeline This Give Problems Because Tests Are G

In the process MyProcess other processes are created via a ProcessPoolExecutor. In these processes calls to logger.report_matplotlib_figure are made, but I get the same issue when I remove these calls.

It looks like I don't have hanging issues when I use mp.set_start_method('spawn') at the top of the script.

I don't have a fully reproducilble example that I can share, sorry for that

2 years ago
0 Maybe This Is More A Git Question Than A Clearml Question, But How Do I Get The Clearml_Agent_Git_User And Clearml_Agent_Git_Pass For Step 11 In

Yes that is the error I get when trying to launch a custom slack alert service (when not running it locally)

3 years ago
0 Maybe This Is More A Git Question Than A Clearml Question, But How Do I Get The Clearml_Agent_Git_User And Clearml_Agent_Git_Pass For Step 11 In

I am using gitlab, I can create an access token. From the gitlab page:
"Personal Access Tokens
You can generate a personal access token for each application you use that needs access to the GitLab API."

However, now I have an access token, not an username/password. Is there also an option to authenticate with the access token?

3 years ago
0 From Datetime Import Datetime Import Hashlib From Clearml Import Task Previous_Timestamp = 0 Task_Filter = {} Task_Filter.Update( { 'Page_Size': 100, 'Page': 0, 'Status_Changed': ['>{}'.Format(Datetime.Utcfromtimestamp(Previou

I was looking for all the metric names, similar as what you get when clicking the '+ metric' in customize columns. But turns out I will implement it in a different way, not needed anymore

3 years ago
0 Hi, When I Use The Slack Monitoring Service It Creates A Link With

I created it with clearml-init, nothing special. It looks like

# ClearML SDK configuration file api { # Notice: 'host' is the api server (default port 8008), not the web server. api_server: web_server: files_server: # Credentials are generated using the webapp, `
# Override with os environment: CLEARML_API_ACCESS_KEY / CLEARML_API_SECRET_KEY
credentials {"access_key": "NMWOE5C3RGTX473M9D3M", "secret_key": "L@G50jO+TJ23#8Eerp1E$4y=elUt11P!BL...

3 years ago
0 Hi, We Use Clearml To Track All Our Experiments. For Each Experiment The Accuracy The Logged For Both The Training And The Test Set:

Yes, I add these metrics as extra columns and then I sort them. I want to know which experiments performs best in daylight for example or which during night. Therefore I think a is not the right choice

3 years ago
0 What Is The Maximum Length For The Experiment Name? I Noticed That With Very Long Names Errors Can Occur

With a name of 98 characters errors like 'munmap_chunk(): invalid pointer',
'double free or corruption (!prev)' or 'free(): invalid next size (normal) occur later in my script. But maybe this is not related to clearml but to the filesystem. Just wondering if there was a maximum length from the clearml side

3 years ago
0 Maybe This Is More A Git Question Than A Clearml Question, But How Do I Get The Clearml_Agent_Git_User And Clearml_Agent_Git_Pass For Step 11 In

Is there a way to test this? It seems my git user and token are correct. I can do git clone https://<NAME_TOKEN >:<ACCESSTOKEN> gitlab.com/mycompany/repo.git

However when starting the service it fails with:

cloning: git@gitlab.com:mycompany/repo.git
Using user/pass credentials - replacing ssh url

:mycompany/repo.git' with https url '

'
2021-01-18 20:04:08
User aborted: stopping task (3)

3 years ago
Show more results compactanswers