mirror of
https://github.com/clearml/clearml
synced 2025-02-12 07:35:08 +00:00
Add example connecting parameters dictionary with experiment
This commit is contained in:
parent
06a716fe8b
commit
fa2022a87a
@ -33,6 +33,12 @@ parameters = {
|
|||||||
}
|
}
|
||||||
parameters = task.connect(parameters)
|
parameters = task.connect(parameters)
|
||||||
|
|
||||||
|
# adding new parameter after connect (will be logged as well)
|
||||||
|
parameters['new_param'] = 'this is new'
|
||||||
|
|
||||||
|
# changing the value of a parameter (new value will be stored instead of previous one)
|
||||||
|
parameters['float'] = '9.9'
|
||||||
|
|
||||||
|
|
||||||
def main(_):
|
def main(_):
|
||||||
print('Running under Python {0[0]}.{0[1]}.{0[2]}'.format(sys.version_info), file=sys.stderr)
|
print('Running under Python {0[0]}.{0[1]}.{0[2]}'.format(sys.version_info), file=sys.stderr)
|
||||||
|
Loading…
Reference in New Issue
Block a user