You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Including import gin.torch or import gin.tf has no effect besides checking whether you have the package installed. To register package specific functions, you have to call import gin.torch.external_configurables, which is poorly documented.
So I suggest adding import external_configurables in gin.torch.__init__ and gin.tf.__init__.
The text was updated successfully, but these errors were encountered:
Including
import gin.torch
orimport gin.tf
has no effect besides checking whether you have the package installed. To register package specific functions, you have to callimport gin.torch.external_configurables
, which is poorly documented.So I suggest adding
import external_configurables
ingin.torch.__init__
andgin.tf.__init__
.The text was updated successfully, but these errors were encountered: