From 59c828c5f0d040f6461534d7760e2ff6e89b3f1a Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Thu, 12 Apr 2018 16:57:40 -0700 Subject: [PATCH] Document support for boolean values in tf.contrib.training.HParams. PiperOrigin-RevId: 192694244 --- tensorflow/contrib/training/python/training/hparam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/contrib/training/python/training/hparam.py b/tensorflow/contrib/training/python/training/hparam.py index 185f70a..6c59b68 100644 --- a/tensorflow/contrib/training/python/training/hparam.py +++ b/tensorflow/contrib/training/python/training/hparam.py @@ -315,7 +315,7 @@ class HParams(object): Hyperparameters have type, which is inferred from the type of their value passed at construction type. The currently supported types are: integer, - float, string, and list of integer, float, or string. + float, boolean, string, and list of integer, float, boolean, or string. You can override hyperparameter values by calling the [`parse()`](#HParams.parse) method, passing a string of comma separated -- 2.7.4