(self)
| 663 | return key in self._hparam_types |
| 664 | |
| 665 | def __str__(self): |
| 666 | hpdict = self.values() |
| 667 | output_list = ['{}={}'.format(key, hpdict[key]) for key in hpdict] |
| 668 | return ','.join(output_list) |
| 669 | |
| 670 | def __repr__(self): |
| 671 | strval = str(sorted(self.values().items())) |