DECODE icon indicating copy to clipboard operation
DECODE copied to clipboard

Add all relevant (hyper)params to tensorboard

Open Haydnspass opened this issue 4 years ago • 1 comments

The stuff that we put in the param.yaml should be also found in the tensorboard logger. Log it there.

Haydnspass avatar Feb 12 '21 10:02 Haydnspass

Suggestion, something like:

pdict = param.to_dict()
for k in pdict:
    if pdict[k] is not None:
        pstring = pprint.pformat(pdict[k], indent=2).replace('\n  ','  \n')
        writer.add_text(k, pstring)

ASpeiser avatar Feb 15 '21 17:02 ASpeiser