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
MagnificentSeaurchin79
Moderator
13 Questions, 160 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

109 × Eureka!
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
Hi! Thanks for this awesome tool 😄 I wanted to know if there was a way of specifying the output_uri depending on whether I'm running on GCP or in my local s...
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
is there a way to sort plots by iteration?
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
Hi, I'm having a hard time trying to understand the Dataset class. What I need is to be able to get the dataset, delete a file, and upload it again. But the ...
3 years ago
0 Votes
30 Answers
993 Views
0 Votes 30 Answers 993 Views
Hi! I was wondering regarding this issue: https://github.com/allegroai/clearml/issues/181 The solution seems to be to not log by default, and only use a cont...
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
I'm following the pipeline controller example...this is the output I get after running the the three scripts for step1, step2, and step3, and finally the pip...
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Hi all! I I tried to run the manual_upload_model.py script, using a worker, and it fails because when looking at the installed packages, tensorflow is not th...
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
What could be the reason for FAIL status of a task that seems to have completed correctly? No information in the log whatsoever
3 years ago
0 Votes
29 Answers
1K Views
0 Votes 29 Answers 1K Views
what could be the reason for my package to not be loading under the "INSTALLED PACKAGES"? I have a . in the requirements.txt I added a task.add_requirements(...
3 years ago
0 Votes
6 Answers
969 Views
0 Votes 6 Answers 969 Views
Hello, how can I make a pipeline that accepts parameters?
3 years ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K Views
Hi! I'm trying to deploy clearml server in GCP, but I don't have access to allegro's bucket
3 years ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
I don't quite understand the way Iterations work. In my current experiment I report every 10 epochs, I'm currently in my epoch 30, but in the UI it says iter...
3 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Hi! I'm using dataset.list_files with wildcards but it is not working as I expected: I think the problem is only when the files are in the root of the dataset.
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
Hi! I'm getting the following error when I upload a folder to GCS using StorageManager, and then use StorageManager to download that folder to use in another...
2 years ago
0 Hi! Thanks For This Awesome Tool

if I put ~/clearml in the default_output_uri key, and start the task, when run as agent in GCP I get clearml.Task - INFO - Completed model upload to file:///$github_proj_directory/~/clearml/$proj_name/$experiment_name

3 years ago
0 Hi! Thanks For This Awesome Tool

if I launch the same script in GCP, (I don't run it as a clearml-agent), then everything works fine

3 years ago
0 Hi! Thanks For This Awesome Tool

and in the script I removed the output_uri= , in the task initialization

3 years ago
0 Hi

it worked! thanks AgitatedDove14 !!

3 years ago
0 Hi

great 🙂

3 years ago
0 Hi

so I need to run a sed command to replace some lines in one of the tensorflow files..do you know if I can do this as part of the setup.py install?

3 years ago
0 Hey! Is There A Way To Ignore The Spammy Output Of Progressbars Like

Hi! I was going to ask about this, but I didn't understand the solution...currently logs are >100MB because of this..is there a way to save the line only once the epoch is done? AgitatedDove14

3 years ago
0 Hi

How would you like me to share it?
So far I have this:
tensorflow_object_detection_autoinstall.sh
Before running:
You need to set your venv
install numpy
export TF_DIR=$HOME/tensorflow mkdir $TF_DIR cd $TF_DIR echopwdwget unzip protoc-3.14.0-linux-x86_64.zip -d protoc export PATH=$PATH:pwd`/protoc/bin

git clone
cd models
git checkout 8a06433
cd $TF_DIR/models/research
protoc object_detection/protos/*.proto --python_out=.

git clone
cd cocoapi/PythonAPI
make
cp -r py...

3 years ago
0 Hi

I see, thanks!

3 years ago
0 Hi

Hi! I'm tryin to find a workaround for this: can't do pip install <name_of_package>
I executed the task, and it created a cache venv.
But when running the code, it couldn't import the package because it wasn't listed.
I then sourced the venv, and manually installed the package
so if I do python -c 'import object_detection' if works

3 years ago
0 Hi

and can the agent when running locally with no base docker, inherit as well system wide packages?

3 years ago
0 Hi

so does the container install anything, or just runs the script? how is the setup done there?

3 years ago
0 Hi

so I have a couple of questions regarding setup.py.
If I add the requirement '.' as the last entry, does that mean that it will install my package lastly? Can I do in setup.py the modifications to the tensorflow code?I need to see how I can change the tensoflow code after it was installed and prevent other tensorflow installation to overwrite it..is it clear?

3 years ago
0 Hi

this creates the whl package that I then use in my requirements.txt file directly

3 years ago
0 Hi

yes, that would work, except that I need to modify tensorflow as well..I'm currently working on creating a wheel for modified tf..but it's taking a while...

3 years ago
0 Hi

so if it lasts executes python setup.py install, I can do stuff like add a line to a file in my venv inside the setup script

3 years ago
0 Hi

btw, do you see these messages AgitatedDove14 when they are inside an old thread? or should I start a new message?

3 years ago
0 Hi

can this be solved by using a docker image with the preinstalled packages at a user level?

3 years ago
0 Hi

ah great! I'll try that then

3 years ago
0 Hi

oh it uses tf 1.15 😕

3 years ago
0 Hi

I didn't know about that one! I'll try it, thanks!!

3 years ago
Show more results compactanswers