Replies: 2 comments
-
Let it run for some time, it should show more outputs eventually and you can scroll through different steps then. |
Beta Was this translation helpful? Give feedback.
0 replies
-
thanks for answer, but first time when i star traing i have got from fist step audio available... when i have reinstall windows this does not show any more even if i move to 1000 steps... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i do VITS trainig from scrach and when i would like to hear test sentens on tensorboard i got 0 in steps count even if my learning steps is 250.
this is also was the problem when i done fine-tuning...
below my executed code:
import os
from glob import glob
from trainer import Trainer, TrainerArgs
from TTS.tts.configs.shared_configs import BaseDatasetConfig
from TTS.tts.configs.vits_config import VitsConfig
from TTS.tts.datasets import load_tts_samples
from TTS.tts.models.vits import CharactersConfig, Vits, VitsArgs, VitsAudioConfig
from TTS.tts.utils.languages import LanguageManager
from TTS.tts.utils.speakers import SpeakerManager
from TTS.tts.utils.text.tokenizer import TTSTokenizer
from TTS.utils.audio import AudioProcessor
def main():
from multiprocessing import Process, freeze_support
if name == 'main':
freeze_support() # needed for Windows
main()
any suggestion
Beta Was this translation helpful? Give feedback.
All reactions