python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is it possible to have a config key be the result of a variable interpolation in Hydra?
Assuming the following config structure:
config.yaml
|-model
| |--default.yaml
|
|-data
|--default.yaml
config.yaml :
defaults:
- model: default
- data: default
model/default.yaml :
...
x_la...
colobas
Votes: 0
Answers: 1
use data types or other library-specific variables as arguments in hydra
I would like to use python datatypes - both built-in and imported from libraries such as numpy, tensorflow, etc - as arguments in my hydra configuration.
Something like:
# config.yaml
arg1: np.float3...
miccio
Votes: 0
Answers: 1
how can I specify a list on the command line
I have the following configuration with hydra:
data_files: null
theta: 0.2
use_weights: true
I can override this as:
python -m apps.test_hydra data.data_files=x
However, when I try to specify a lis...
Luca
Votes: 0
Answers: 2
hydra composition for ML models
I have some configurations for ML components as follows:
ml/encoder.yaml
hidden_layers_sizes: [2000, 1000, 300]
z_dim: 50
ml/decoder.yaml
hidden_layers_sizes: [300, 1000, 2000]
z_dim: 50
Now I hav...
Luca
Votes: 0
Answers: 1