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
Is There A Way To Tell An Experiment Not To Use Caches? From The Python Api Specifically. Something Like

is there a way to tell an experiment not to use caches? from the python API specifically. something like task.use_caches = False ? I don't want it to use any cached venv, vcs, or pip

  
  
Posted 2 years ago
Votes Newest

Answers 6


As far as I know, some of the caches cannot be turned off, but that is simply since the agent needs to store the data somewhere... Why does the cache bother you in this scenario?

  
  
Posted 2 years ago

` Using cached repository in "/root/.clearml/vcs-cache/DeployKit_cloud.git.3e6952dd2fa4054e353465fe2d40daa3/DeployKit_cloud.git"

fatal: Could not read from remote repository. `

  
  
Posted 2 years ago

Hi ElegantCoyote26 , is your use-case about running tasks manually (locally), or running them using ClearML Agent?

  
  
Posted 2 years ago

Because sometimes it clones a cached version of a private repository, instead of cloning the requested version

  
  
Posted 2 years ago

using clearML agent

  
  
Posted 2 years ago

If 3e5962dd is the commit it's trying to clone, it doesn't exist because I deleted it.
it should be cloning a more up-to-date version of the repository

  
  
Posted 2 years ago
628 Views
6 Answers
2 years ago
one year ago
Tags