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
ColossalSquid53
Moderator
3 Questions, 14 Answers
  Active since 09 July 2025
  Last activity 7 days ago

Reputation

0

Badges 1

13 × Eureka!
0 Votes
3 Answers
355 Views
0 Votes 3 Answers 355 Views
Hi, I'm using open source on prem clearml, I tried to disable the check_for_updates so it will stop appending the new version message on each new task: CLEAR...
25 days ago
0 Votes
1 Answers
240 Views
0 Votes 1 Answers 240 Views
one month ago
0 Votes
27 Answers
176 Views
0 Votes 27 Answers 176 Views
Hi, I have a problem of showing images and artifacts in the web ui. we get Unauthorized (401) when loading the plot page of a task. It almost like this issue...
28 days ago
0 Hi, I Have A Problem Of Showing Images And Artifacts In The Web Ui. We Get Unauthorized (401) When Loading The Plot Page Of A Task. It Almost Like

Unfortunately I have the same error, but just to make sure:
before this addition I only had the following in my apiserver.conf

auth {
    # Fixed users login credentials
    # No other user will be able to login
    fixed_users {
        enabled: true
        pass_hashed: true
        users: [
            {
                username: "user.name"
                password: "blabla"
                name: "User Name"
            },
        ]
    }
}

and now after the addition:

``...

26 days ago
0 Hi, I Have A Problem Of Showing Images And Artifacts In The Web Ui. We Get Unauthorized (401) When Loading The Plot Page Of A Task. It Almost Like

it seems that config.skipFileServer : true and that's why he skips the convertToReverseProxy(url)) .
where can I change that value?

26 days ago
0 Hi, I Have A Problem Of Showing Images And Artifacts In The Web Ui. We Get Unauthorized (401) When Loading The Plot Page Of A Task. It Almost Like

I mainly have problem with debug samples as now i manage to see some plots that were created with plt.imshow() . But I still don't see any kind of debug samples (images, audio, txt etc.) with the same 401 error.
So it's weird how some images from the file server can be accessed while other files can't.

27 days ago
0 Hi, I Have A Problem Of Showing Images And Artifacts In The Web Ui. We Get Unauthorized (401) When Loading The Plot Page Of A Task. It Almost Like

When I ran the following code:

task = Task.init(project_name='DevOps/debug-subproject', task_name='test-task6')
task.logger.report_media(
    title='audio', 
    series='tada', 
    iteration=1,
    local_path='./audio-sample.mp3'
)
task.close()

and then in the UI when I look in developer tools I see that it tried to access:

26 days ago
0 Hi, I Have A Problem Of Showing Images And Artifacts In The Web Ui. We Get Unauthorized (401) When Loading The Plot Page Of A Task. It Almost Like

do you mean I should add the following to /opt/clearml/config/apiserver.conf :

auth {
    cookies {
    httponly: true
    secure: true
    domain: ".my.domain"
    max_age: 99999999999
  }
}

based on these docs

26 days ago
0 Hello Everyone. Is There A Way To Get The Username From The User Id With Code?
from clearml import Task
    def _get_user_mapping(self):
        # type: () -> dict
        """
        Get mapping from user IDs to usernames
        """
        res = Task._get_default_session().send_request("users", "get_all")
        if not res.ok:
            print("Warning: Cannot get list of all users, will use user IDs")
            return {}
        all_users = res.json()["data"]["users"]
        return {d["id"]: d["name"] for d in all_users}
3 days ago
0 Hi, I Have A Problem Of Showing Images And Artifacts In The Web Ui. We Get Unauthorized (401) When Loading The Plot Page Of A Task. It Almost Like

no didn't use that,
Do you suggest the following?

    cookies {
    httponly: true
    secure: true
    domain: ".my.domain"
    max_age: 99999999999
    samesite: Lax

  }
26 days ago
0 Hi, I'M Using Open Source On Prem Clearml, I Tried To Disable The

Where can I find it?
if you mean /opt/clearml/logs/apiserver.log then it logrotates every one hour so I'm unable to get those logs right now unless I restart the service, is there another way to check that?

24 days ago
0 Hi, I'M Using Open Source On Prem Clearml, I Tried To Disable The

@<1523701070390366208:profile|CostlyOstrich36>

root@clearml:/opt/clearml/config# docker-compose -f /opt/clearml/docker-compose.yml up -d
WARNING: The CLEARML_AGENT_GIT_USER variable is not set. Defaulting to a blank string.
WARNING: The CLEARML_AGENT_GIT_PASS variable is not set. Defaulting to a blank string.
Creating network "clearml_backend" with driver "bridge"
Creating network "clearml_frontend" with driver "bridge"
Creating clearml-redis      ... done
Creating clearml-fileserver ....
7 days ago