gin-config icon indicating copy to clipboard operation
gin-config copied to clipboard

Gin provides a lightweight configuration framework for Python

Results 60 gin-config issues
Sort by recently updated
recently updated
newest added

## Question I came across the `avoid_class_mutation` kwarg in the definition of `_make_configurable`. When would it be best to use one or the other option? This parameter is also not...

When I use gin config for hyperparameter search with optuna and it starts multiple processes at the same time I get the following error: `Attempted to modify locked Gin config`...

In `config.gin`, I cannot do something like ```python GAT.embed_dim = 30 # this is for init of GAT Attention.node_ft_dim = GAT.__init__.embed_dim # Attention.node_ft_dim = GAT.embed_dim # this won't work too...

Hello, How exactly would one save a config to a wandb format? More concretely, how would one get a dict-like object that gives access to all values that gin could...

This may be kinda hacky, but what if I wanted to use some function and only define it via gin file, so this is the solution I came up with:...

We are currently working on a project that uses random search to find some hyperparameters and are looking for a solution on how to achieve that with gin. Our ideal...

Hi, I have trained two models (say A and B) separately, each with their respective gin files. The problem now is that I want to load both models within the...

I want to use module to connect url. #inside data.gin import os DataPatient="path1" Data_no_smooth= os.path.join("~/orgindata",os.path.basename(%DataPatient)) Data_smooth= os.path.join("~/smoothdata",os.path.basename(%DataPatient)) I doesn't work.I want to know how to use python method in gin...

https://jakarta.ee/blogs/javax-jakartaee-namespace-ecosystem-progress/

Added AdamW from tf.keras.optimizers to external_configurables. AdamW optimizer is supported in current version of tensorflow(https://www.tensorflow.org/api_docs/python/tf/keras/optimizers)