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 Any Way I Can Ensure Specific Python Package Versions Are Being Installed? Basically I Need Torch==2.4.0+Cu124 And Torchvision==0.19.0+Cu124, But I Think Certain Other Packages (Not Sure Which, Suspecting Either Clearml Or Ultralytics) Are Instal

Is there any way I can ensure specific python package versions are being installed? Basically I need torch==2.4.0+cu124 and torchvision==0.19.0+cu124, but I think certain other packages (not sure which, suspecting either clearml or ultralytics) are installing other versions over them (mainly installing torch==2.4.0 over torch==2.4.0+cu124) and because of it I keep encountering issues. I have already tried and set the versions in the requirements.txt, they still get overwritten.

  
  
Posted 19 days ago
Votes Newest

Answers 2


Thanks, that might have done the trick!

  
  
Posted 18 days ago

Hi @<1736919317200506880:profile|NastyStarfish19> , the default behaviour of the agent will install everything in the 'installed packages' section in the execution tab. You can also specify packages manually using Task.set_packages - None

  
  
Posted 19 days ago
81 Views
2 Answers
19 days ago
17 days ago
Tags