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 Get These Errors For Triggerscheduler:

Hi, I get these errors for TriggerScheduler:
ClearML results page: {some URL} Failed deserializing configuration: the JSON object must be str, bytes or bytearray, not NoneType Failed deserializing configuration: the JSON object must be str, bytes or bytearray, not NoneType Failed deserializing configuration: the JSON object must be str, bytes or bytearray, not NoneType Failed deserializing configuration: the JSON object must be str, bytes or bytearray, not NoneType Failed deserializing configuration: the JSON object must be str, bytes or bytearray, not NoneType Failed deserializing configuration: the JSON object must be str, bytes or bytearray, not NoneTypeminimal example:
` from clearml import Model
from clearml.automation import TriggerScheduler

def trigger_model_func(model_id):
model = Model(model_id=model_id)
print('model id {} modified'.format(model.id))

if name == 'main':
trigger = TriggerScheduler(pooling_frequency_minutes=1.0)

trigger.add_model_trigger(
    name='Test',
    schedule_function=trigger_model_func,
    trigger_project='{my project name}',
    trigger_on_tags=['Test']
)

trigger.start_remotely() `What am I doing wrong?
  
  
Posted 2 years ago
Votes Newest

Answers 2


Is it failing when running on a worker?

  
  
Posted 2 years ago

Hi, in addition to natanM's question, does it fail on trigger or by running the script? if running with worker, please share worker logs as well!

  
  
Posted 2 years ago