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
WackyRabbit7
Moderator
73 Questions, 550 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

533 × Eureka!
0 Votes
6 Answers
874 Views
0 Votes 6 Answers 874 Views
Is there an auto scaling solution for GCP users?
3 years ago
0 Votes
4 Answers
854 Views
0 Votes 4 Answers 854 Views
Getting a super weird error. Everything works fine on local, when trying to run on remote, getting this error failing to apply the git diff could not apply d...
3 years ago
0 Votes
5 Answers
874 Views
0 Votes 5 Answers 874 Views
I must compliment the Python level and documentation level in the source code is superb, I love reading it 😄 Even though I love reading it, is there anywher...
3 years ago
0 Votes
2 Answers
909 Views
0 Votes 2 Answers 909 Views
I have a production inference pipeline which I want to continuously test on my Github to make sure it doesn't break as we move forward. The ideal scenario fo...
2 years ago
0 Votes
4 Answers
908 Views
0 Votes 4 Answers 908 Views
4 years ago
0 Votes
2 Answers
874 Views
0 Votes 2 Answers 874 Views
When using the marketplace AMI - what is the diference between "Launch from website" vs "Launch through EC2"?
3 years ago
0 Votes
21 Answers
860 Views
0 Votes 21 Answers 860 Views
3 years ago
0 Votes
31 Answers
17K Views
0 Votes 31 Answers 17K Views
Unrelated problem (or is it?) the ClearML's built in Cleanup Service fails clearml.utilities.pyhocon.exceptions.ConfigMissingException: 'No configuration set...
2 years ago
0 Votes
24 Answers
804 Views
0 Votes 24 Answers 804 Views
Question about the file server. Currently, we have a machine with MINIO installed, and all file communication is made using the MINIO SDK client. [MINIO is j...
3 years ago
0 Votes
32 Answers
13K Views
0 Votes 32 Answers 13K Views
I have a set up an agent, on a GPU machine, and spun up the daemon in docker moder, and specifically specified a GPU that it will work with. The image is oka...
4 years ago
0 Votes
11 Answers
996 Views
0 Votes 11 Answers 996 Views
What is the correct way of setting environment variables for agents which DON'T RUN in docker mode? Do they simply inherit from the environment they were exe...
2 years ago
0 Votes
9 Answers
897 Views
0 Votes 9 Answers 897 Views
Where can I find a more extensive documentation of serving? I'm looking for How to write pre + post processing callbacks for inference and statistics Manual ...
2 years ago
0 Votes
32 Answers
11K Views
0 Votes 32 Answers 11K Views
Very weird error, trying to run an experiment through an agent in docker mode, and I get this error docker: Error response from daemon: create /home/elior/De...
3 years ago
Show more results questions
0 Question About The Storage Manager. Assuming I Have An Object That Updates Frequently And Always Saved At The Same Path (E.G.

Legit, if you have a cached_file (i.e. exists and accessible), you can return it to the caller

I agree, so shouldn't it be if cached_file: return cached_file instead of if not cached_file: return cached_file

3 years ago
0 Question About The Auto Scaling Service Under

I doubled checked the credentials in the configurations, and they have full EC2 access

3 years ago
0 I'M Running

id did not help

2 years ago
0 I'M Running

` name: XXXXXXXXXX

on:
workflow_dispatch

jobs:
test-monthly-predictions:
runs-on: self-hosted
env:
DATA_DIR: ${{ secrets.RUNNER_DATA_DIR }}
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.RUNNER_CREDS }}
steps:
# Checkout
- name: Check out repository code
uses: actions/checkout@v2

  # Setup python environment
  - name: Setup up python environment using Poetry
    run: |
      /home/elior/.poetry/bin/poetry env use python3.9
  ...
2 years ago
0 I Have To Say I'M Totally Confused By The Pipeline I Want To Execute The Pipeline On My Local Computer. I Followed

I set it to true, I have more packages installed now, but it still fails.. here is the log TimelyPenguin76

` Successfully installed clearml-1.0.5 cloudpickle-1.6.0 cycler-0.10.0 hyperopt-0.2.5 kiwisolver-1.3.2 matplotlib-3.4.3 networkx-2.6.2 pandas-1.3.2 patsy-0.5.1 plotly-5.3.0 python-dateutil-2.8.2 statsmodels-0.12.2 tenacity-8.0.1 tqdm-4.62.2
Adding venv into cache: /home/elior/.clearml/venvs-builds/3.8
Running task id [24a54a473c234b00a126ec805d74046f]:
[.]$ /home/elior/.clearml/venvs...

3 years ago
0 Question, Lets Say I'M Kaggling, As You Might Know Some "Code Competitions" Are Restricted From Internet Access. In The General Case, You Might Have Some Inference Code Running In An Environment Which Is Isolated From The Net (Data Privacy Issues And Suc

Yep, if communication is both ways, there is no way (that I can think of) it can be solved for offline mode.

But if the calls that are made from the server to the client can be redundant in a specific setup (some functionality will not work, but enough valuable functionality remains) then it is possible in the manual way

4 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

So if I'm collecting from the middle ones, shouldn't the callback be attached to them?

2 years ago
3 years ago
0 Following The Instructions For Local Trains Deployment On Linux (

a machine that had previous installation, but I deleted the /opt/trains directory beforehand

3 years ago
3 years ago
0 Is There A Way To Run A Pipeline (

TimelyPenguin76 this fixed it, using the detect_with_pip_freeze as true solves the issue

3 years ago
0 Question About Artifacts, Dynamic Vs Static And Their Relationship To Experiments Under

So dynamic or static are basically the same thing, just in dynamic, I can edit the artifact while running the expriment?

Second, why would it be overwritten if I run a different run of the same experiment? As I saw, each object is stored under a directory with the task ID which is unique per run, so I assume I won't be overriding artifacts which are saved under the same name in different runs (regardless of static or dynamic)

4 years ago
0 Is There An Option To Separate The Storage From The Server? E.G. Deploying My Trains Server On Some Light Machine, And Confguring The Storage To Be Aws S3 Or Something Similar

Cool - so that means the fileserver which comes with the host will stay emtpy? Or is there anything else being stored there?

4 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

I'm using pipe.start_locally so I imagine I don't have to .wait() right?

2 years ago
0 Question, When Using

Good, so if I'm templating something using clearml-task (without queue, so the task is in draft mode) it will use this task? Even though it never exeucted?

2 years ago
0 What Is Being Stored Exactly In

Yeah the task failed

2 years ago
Show more results compactanswers