You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,27 @@ An initial guidance on Finetuning [#57](https://github.com/SWivid/F5-TTS/discuss
72
72
73
73
Gradio UI finetuning with `finetune_gradio.py` see [#143](https://github.com/SWivid/F5-TTS/discussions/143).
74
74
75
+
## Wandb Logging
76
+
77
+
By default, the training script does NOT use logging (assuming you didn't manually log in using `wandb login`).
78
+
79
+
To turn on wandb logging, you can either:
80
+
81
+
1. Manually login with `wandb login`: Learn more [here](https://docs.wandb.ai/ref/cli/wandb-login)
82
+
2. Automatically login programmatically by setting an environment variable: Get an API KEY at https://wandb.ai/site/ and set the environment variable as follows:
83
+
84
+
On Mac & Linux:
85
+
86
+
```
87
+
export WANDB_API_KEY=<YOUR WANDB API KEY>
88
+
```
89
+
90
+
On Windows:
91
+
92
+
```
93
+
set WANDB_API_KEY=<YOUR WANDB API KEY>
94
+
```
95
+
75
96
## Inference
76
97
77
98
The pretrained model checkpoints can be reached at [🤗 Hugging Face](https://huggingface.co/SWivid/F5-TTS) and [🤖 Model Scope](https://www.modelscope.cn/models/SWivid/F5-TTS_Emilia-ZH-EN), or automatically downloaded with `inference-cli` and `gradio_app`.
0 commit comments