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!
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 NoneType
minimal 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?