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 Team, I Have Created Inference For Statsmodels, I Am Trying To Clone And Run By Running Agent But It Throwing Error That Statsmodels Is Not Found .Could You Reply.

Hi team, I have created inference for statsmodels, i am trying to clone and run by running agent but it throwing error that statsmodels is not found .could you reply. @<1523701087100473344:profile|SuccessfulKoala55> @<1523701118159294464:profile|ExasperatedCrab78> @<1523701070390366208:profile|CostlyOstrich36> @<1523701205467926528:profile|AgitatedDove14>

Traceback (most recent call last):
File "/home/oem/.clearml/venvs-builds.2/3.8/code/inference_sarimax.py", line 14, in <module>
model = pickle.load(handle)
File "/home/oem/.clearml/venvs-builds.2/3.8/lib/python3.8/site-packages/clearml/binding/import_bind.py", line 54, in __patched_import3
mod = builtins.org_import(
ModuleNotFoundError: No module named 'statsmodels'
ClearML Monitor: GPU monitoring failed getting GPU reading, switching off GPU monitoring
2023-04-04 13:04:54
Process failed, exit code 1

  
  
Posted 11 months ago
Votes Newest

Answers 2


Hi @<1533257278776414208:profile|SuperiorCockroach75>

ModuleNotFoundError: No module named 'statsmodels'

seems like this package is missing from the Task
wither import it manually import statsmodels (so the automagic logs it)
Or add before task init:

Task.add_requirements("statsmodels")
task = Task.init(...)

ps: no need to @ so many people ...

  
  
Posted 11 months ago

@<1523701205467926528:profile|AgitatedDove14> i have already ran this inference code it is running,when i am cloning and running by running agent its showing error.

  
  
Posted 11 months ago
524 Views
2 Answers
11 months ago
11 months ago
Tags