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, I Would Like To Use Pytorch3D==0.5.0 With Torch==1.9.1 On Cuda Version 110, Locally It Works, But The Clearml Agent Fails Setting Up The Environment With The Following Error:

Hi, I would like to use pytorch3d==0.5.0 with torch==1.9.1 on cuda version 110, locally it works, but the clearml agent fails setting up the environment with the following error:
ERROR: Could not find a version that satisfies the requirement pytorch3d==0.5.0 (from -r /tmp/cached-reqsm0b1151b.txt (line 4)) (from versions: 0.0.1, 0.1.1, 0.2.0, 0.2.5, 0.3.0) ERROR: No matching distribution found for pytorch3d==0.5.0 (from -r /tmp/cached-reqsm0b1151b.txt (line 4)) clearml_agent: ERROR: Could not install task requirements! Command '['/home/user/.clearml/venvs-builds/3.6/bin/python', '-m', 'pip', '--disable-pip-version-check', 'install', '-r', '/tmp/cached-reqsm0b1151b.txt']' returned non-zero exit status 1.Any idea what is going on? ๐Ÿ™‚
My reqs are as follows:
REQS_TRAIN_TASK = [ "torch==1.9.1", "pytorch-ignite==0.4.3", "torchvision==0.8.2", "pytorch3d==0.5.0", "." ]

  
  
Posted one year ago
Votes Newest

Answers 5


Hi AgitatedDove14 , Here is the full log.
Both python versions (local and remote) are python 3.6 Locally (macos), I get pytorch3d== (from versions: 0.0.1, 0.1.1, 0.2.0, 0.2.5, 0.3.0, 0.4.0, 0.5.0) Remotely (Ubuntu), I get (from versions: 0.0.1, 0.1.1, 0.2.0, 0.2.5, 0.3.0)So I guess itโ€™s not related to clearml-agent really, rather pip that cannot find the proper wheel for ubuntu for latest versions of pytorch3d, right? If yes, is there a way to build the wheel on the remote machine, store them somewhere and tell the agent to install it?

  
  
Posted one year ago

JitteryCoyote63 yes this is very odd, seems like a pypi flop ?!
On the website they do say there is 0.5.0 ... I do not get it
https://pypi.org/project/pytorch3d/#history

  
  
Posted one year ago

Hi JitteryCoyote63
Could it be a python mismatch ? can you send the full log?
BTW: when I do
pip3.8 install pytorch3d==I get the following versions:
pytorch3d== (from versions: 0.0.1, 0.1.1, 0.2.0, 0.2.5, 0.3.0)

  
  
Posted one year ago

AgitatedDove14 Yes that might work, also the first one (with conda) might work as well, I will give it a try, thanks!

  
  
Posted one year ago