Skip to content

Commit 0cfb58f

Browse files
committed
doc fix
1 parent c762d9a commit 0cfb58f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/sphinx_doc/source/tutorial/trinity_programming_guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,21 +286,21 @@ trinity run --config <your_yaml_file>
286286

287287
---
288288

289-
## Creating New Parameters for the Config Generator (Advanced)
289+
## Adding New Config Entries for the Config Generator (Advanced)
290290

291291
### Step 0: Understanding Streamlit
292292

293293
Before adding new parameters to the Config Generator page, it is essential to familiarize yourself with the relevant API and mechanisms of [Streamlit](https://docs.streamlit.io/develop/api-reference). This project primarily utilizes various input components from Streamlit and employs `st.session_state` to store user-input parameters.
294294

295-
### Step 1: Implementing New Parameter Settings
295+
### Step 1: Implement New Config Entries
296296

297297
To illustrate the process of creating a new parameter setting for the Config Generator page, we will use `train_batch_size` as an example.
298298

299299
1. Determine the appropriate scope for the parameter. Currently, parameters are categorized into four files:
300-
- `buffer_config_manager.py`
301-
- `explorer_config_manager.py`
302-
- `model_config_manager.py`
303-
- `trainer_config_manager.py`
300+
- `trinity/manager/config_registry/buffer_config_manager.py`
301+
- `trinity/manager/config_registry/explorer_config_manager.py`
302+
- `trinity/manager/config_registry/model_config_manager.py`
303+
- `trinity/manager/config_registry/trainer_config_manager.py`
304304

305305
In this case, `train_batch_size` should be placed in the `buffer_config_manager.py` file.
306306

0 commit comments

Comments
 (0)