Update README.md

This commit is contained in:
HengZhang 2024-11-29 14:28:51 +08:00
parent 09c5595ca9
commit 4a501e6819
1 changed files with 2 additions and 2 deletions

View File

@ -172,14 +172,14 @@ We welcome the community to help expand and improve our framework! This guide ou
cfg.model.num_nodes = 0
cfg.model.rnn_units = 64
cfg.model.dropout = 0.1
```
```
3. **Add Nested Parameters**
If needed, create nested parameters using `CN()`:
```python
cfg.model.next = CN()
cfg.model.next.default = 1
```
```
4. **Sync Parameters Across Configs**
Ensure the parameters in `cfg_model` align with those in other configs (e.g., `cfg_trafficflow`) to avoid compatibility issues across systems (Windows, Linux, etc.).