Reputation: 123
I want to use the HParams class from tf.contrib.training in tensorflow 2.0 version, but I can't find the replacement for this class neither in tensorflow alpha documentation nor in tensorflow_addons
Upvotes: 10
Views: 7532
Reputation: 1057
By reviewing some guides and the new hparams
API, I have concluded that there is no such class. However, in the new API there exists an HParam
class, and the equivalent of an HParams
object is just a list of HParam
objects.
Check the hparams API for more details. You can also learn how to use the new API in this guide: Hyperparameter Tuning with the HParams Dashboard
Upvotes: 5