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
SmarmyDolphin68
Moderator
8 Questions, 47 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

40 × Eureka!
0 Votes
30 Answers
846 Views
0 Votes 30 Answers 846 Views
Hi, I am trying to upload a plot to an existing task using the old_task = Task.get_task() function and then calling old_task.get_logger().report_matplotlib_f...
3 years ago
0 Votes
30 Answers
989 Views
0 Votes 30 Answers 989 Views
Hi, I'm trying to upload an artifact to my connected Azure Storage Container with from trains import Task task = Task.init(project_name="Test", task_name="te...
3 years ago
0 Votes
24 Answers
823 Views
0 Votes 24 Answers 823 Views
Hey folks, when I run clearml-init on an 'on-premise' server (which can only be accessed via VPN) it gives an error and fails to create the clearml.conf file...
3 years ago
0 Votes
1 Answers
733 Views
0 Votes 1 Answers 733 Views
Hi, I have a CSV file that I want to upload to my Trains experiment. Is there any functionality in trains that automatically converts the CSV and converts it...
3 years ago
0 Votes
2 Answers
892 Views
0 Votes 2 Answers 892 Views
Hey, I see this in between my training epochs, what could be causing this? Because I see no affect of the following INFO on the training or reporting to Clea...
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
3 years ago
0 Votes
2 Answers
840 Views
0 Votes 2 Answers 840 Views
Hey, I was just exploring the UI, is there any way to add custom notes for a model like observations and conclusions for any experiment?
3 years ago
0 Votes
4 Answers
824 Views
0 Votes 4 Answers 824 Views
3 years ago
0 Hi, I Am Trying To Upload A Plot To An Existing Task Using The

Are you doing 

plt.imshow

Nope

And yes, I set the report_image=False

3 years ago
0 Hi, I Am Trying To Upload A Plot To An Existing Task Using The

0.16.1-320

you mean 0.16?

Ah my bad, I picked up the version from docker-compose file :D

3 years ago
0 Hey Folks, When I Run

Yes, copied and pasted the configuration file correctly, points to the right server (running on Azure). I created a clearml.conf file on another Azure VM (not under the VPN) and there it worked fine. The 'on-premise' server fails to connect to the ClearML server because of the VPN I think

3 years ago
0 Hi, I Am Trying To Upload A Plot To An Existing Task Using The

AgitatedDove14 , here's the code snippet you requested

3 years ago
0 Hey Folks, When I Run

I tried it about 2-3 months ago with trains-init (same use-case as this one) and it failed that time too.

Could it be the credentials are actually incorrect?

Highly unlikely, like I said, I generated a new set of credentials from the Web-UI and it worked perfectly fine for an Azure VM (not under the VPN).

3 years ago
0 Another Question: Is It Possible To Specify In Which Directory To Save All The Files That Clearml-Agent Creates (E.G. Cache Files Or Results Of The Currently Running Experiments)

So clearml-init can be skipped, and I provide the users with a template and ask them to append the credentials at the top, is that right? What about the "Credential verification" step in clearml-init command, that won't take place in this pipeline right, will that be a problem?

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

I tried setting the variables with export but got this error:
` Traceback (most recent call last):
File "test.py", line 1, in <module>
from trains import Task
File "/home/sam/VirtualEnvs/test/lib/python3.8/site-packages/trains/init.py", line 4, in <module>
from .task import Task
File "/home/sam/VirtualEnvs/test/lib/python3.8/site-packages/trains/task.py", line 28, in <module>
from .backend_interface.metrics import Metrics
File "/home/sam/VirtualEnvs/test/lib/pyth...

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

` 2020-12-03 13:31:27,296 - trains.storage - ERROR - Azure blob storage driver not found. Please install driver using "pip install 'azure.storage.blob>=2.0.1'"
Traceback (most recent call last):
File "test.py", line 3, in <module>
task = Task.init(project_name="Test", task_name="debugging")
File "/home/sam/VirtualEnvs/test/lib/python3.8/site-packages/trains/task.py", line 461, in init
task.output_uri = cls.__default_output_uri
File "/home/sam/VirtualEnvs/test/lib/python3.8/site-...

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

It says container name is optional in azure.storage , if I don't provide the container name, and remove it from the end of default_uri , would that work?

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

This is the whole error dump:
`
2020-12-03 13:31:27,296 - trains.storage - ERROR - Azure blob storage driver not found. Please install driver using "pip install 'azure.storage.blob>=2.0.1'"
Traceback (most recent call last):
File "test.py", line 3, in <module>
task = Task.init(project_name="Test", task_name="debugging")
File "/home/sam/VirtualEnvs/test/lib/python3.8/site-packages/trains/task.py", line 461, in init
task.output_uri = cls.__default_output_uri
File "/home/sam/Virtu...

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

I did that, and it works flawlessly. I swear I installed the Azure blob storage package multiple times, anyway thanks a lot again for the detailed debugging O:)

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

Oh it worked! I did the pip install multiple times earlier, but to no avail. I think it's because of the env variables? Let me try to unset those and provide it within the trains.conf

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

Ahh okay, commented out the whole thing and got the same error as earlier ( Could not get access credentials )

3 years ago
0 Hi, I'M Trying To Upload An Artifact To My Connected Azure Storage Container With

This is what I get with the ' https:// ' , this is atleast getting a response from Azure
` 2020-12-03 13:48:49,667 - trains.Task - INFO - No repository found, storing script code instead
TRAINS results page: http://<IP>:8080/projects/<hash>/output/log
2020-12-03 13:48:51,505 - trains.Task - INFO - Waiting for repository detection and full package requirement analysis
2020-12-03 13:48:53,315 - trains.Task - INFO - Finished repository detection and package analysis
2020-12-03 13:48:53,315 -...

3 years ago
Show more results compactanswers