File size: 645 Bytes
b84549f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
# pylint: skip-file
import copy
import json_tricks
_params = None
_last_metric = None
def get_next_parameter():
return _params
def get_experiment_id():
return 'fakeidex'
def get_trial_id():
return 'fakeidtr'
def get_sequence_id():
return 0
def send_metric(string):
global _last_metric
_last_metric = string
def init_params(params):
global _params
_params = copy.deepcopy(params)
def get_last_metric():
metrics = json_tricks.loads(_last_metric)
metrics['value'] = json_tricks.loads(metrics['value'])
return metrics
|