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
Answered
Hi, When Executing Remotely, Is It Possible To Provide A Requirements.Txt? I Am Sending My Script From A Windows Pc To A Linux Machine So Some Of The Sys Related Libraries Are Not Required And So I Wanted To Avoid The Automatic "Force_Requirements_Env_Fre

Hi,
When executing remotely, is it possible to provide a requirements.txt? I am sending my script from a windows pc to a linux machine so some of the sys related libraries are not required and so I wanted to avoid the automatic "force_requirements_env_freeze"

  
  
Posted 2 years ago
Votes Newest

Answers 13


When the import command is executed remotely it crashes since these branches were pulled to the local machine

  
  
Posted 2 years ago

I pulled a local copy of the desired branch from each to a local folder

  
  
Posted 2 years ago

How exactly are you using multiple repos?

  
  
Posted 2 years ago

You can always edit those details before running remotely (setting a new branch, clearing out the commit ID etc.)\

  
  
Posted 2 years ago

so that imports from local repos will not fail

  
  
Posted 2 years ago

Is there a way to deliver this folder to the agent / the task?

  
  
Posted 2 years ago

Hi PunyPigeon71 ,
You can use the agent's agenrt.package_manager.force_repo_requirements_txt: true setting to make sure it will always install the repository's requirements file

  
  
Posted 2 years ago

Well, ClearML currently supports a single repository. If you code needs more, it can clone them explicitly...

  
  
Posted 2 years ago

Thanks

  
  
Posted 2 years ago

What do you mean by "sync"? The agent running the code remotely will clone (or update) the git repo according to the specified repository details in the task

  
  
Posted 2 years ago

In the past I worked with a remote interpreter and synched the directory to which all my git repos are pulled with a remote folder in the remote machine

  
  
Posted 2 years ago

Do you happened to know if there is a way to sync my local git folder when executing remotely?

  
  
Posted 2 years ago

and inside the script I import the desired parts from each of them

  
  
Posted 2 years ago
582 Views
13 Answers
2 years ago
one year ago
Tags