Skip to content

Commit 3c70fed

Browse files
authored
Fix code block formatting (#88)
* Fix code block formatting * Remove relative path reference to file
1 parent a5f985b commit 3c70fed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/customization.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ datasets/
5858
```
5959
and that the .csv file has the following format:
6060

61-
```csv my_dataset/dataset.csv
61+
```
62+
csv my_dataset/dataset.csv
6263
audio,text
6364
example_1.mp3,"This is an example"
6465
example_2.mp3,"This is another example"
@@ -111,7 +112,7 @@ def load_my_dataset(my_dataset_dir: str = "/home/user/datasets/my_dataset", trai
111112

112113
### Step 3: Integrate with the rest of the codebase
113114

114-
Once you've created your custom dataset loading function, you need to integrate it into the existing codebase. Specifically, you need to update the `load_dataset_from_dataset_id` function in [data_process.py](../src/speech_to_text_finetune/data_process.py) to include the new function. Simply add to the function:
115+
Once you've created your custom dataset loading function, you need to integrate it into the existing codebase. Specifically, you need to update the `load_dataset_from_dataset_id` function in `data_process.py` to include the new function. Simply add to the function:
115116

116117

117118
```

0 commit comments

Comments
 (0)