andabi / deep-voice-conversion

Deep neural networks for voice conversion (voice style transfer) in Tensorflow
MIT License
3.92k stars 845 forks source link

who can tell me what is case in train1... #28

Open Hjwjames opened 6 years ago

Hjwjames commented 6 years ago

123123

I face this problem for long time....

Hjwjames commented 6 years ago

1111

ok...I solve that problem now... but now I find the training stop at 0b [00:00 , ?b/2]

JiaYK commented 6 years ago

You don't have Timit datasets?

VictoriaBentell commented 6 years ago

You can get the trained weights here so you don't have to worry about Train1.

Hjwjames commented 6 years ago
mfcc, ppg = get_batch(model.mode, model.batch_size)

File "G:\code\python\myfile\ASR\deep-voice-conversion-master\data_load.py", line 205, in get_batch mfcc, ppg = list(map(_get_zero_padded, list(zip([get_mfccs_and_phones(w, hp_default.sr) for w in target_wavs])))) File "G:\code\python\myfile\ASR\deep-voice-conversion-master\data_load.py", line 205, in mfcc, ppg = list(map(_get_zero_padded, list(zip([get_mfccs_and_phones(w, hp_default.sr) for w in target_wavs])))) File "G:\code\python\myfile\ASR\deep-voice-conversion-master\data_load.py", line 25, in get_mfccs_and_phones wav, sr = librosa.load(wav_file, sr=sr) File "G:\anaconda\lib\site-packages\librosa\core\audio.py", line 112, in load exec(compile(f.read(), filename, 'exec'), namespace) File "G:/code/python/myfile/ASR/deep-voice-conversion-master/train1.py", line 117, in train(logdir=logdir, hparams = hp) File "G:/code/python/myfile/ASR/deep-voice-conversion-master/train1.py", line 65, in train with audioread.audio_open(os.path.realpath(path)) as input_file: File "G:\anaconda\lib\site-packages\audioread__init__.py", line 114, in audio_open raise NoBackendError() audioread.NoBackendError

execfile(filename, namespace)

File "G:\anaconda\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile Traceback (most recent call last): File "", line 1, in File "G:\anaconda\lib\site-packages\spyder\utils\site\sitecustomize.py", line 880, in runfile

Hjwjames commented 6 years ago

raise NoBackendError() audioread.NoBackendError It raise NobackendError...... @JiaYK @VictoriaBentell Do you know anything about it? Any comments would be much appreciated..... Thanks for your answer... I haven't put my Timit dataset in it last time

VictoriaBentell commented 6 years ago

According to this thread you might want to try installing ffmpeg.

JiaYK commented 6 years ago

It's better to work under Linux. Tensorflow-gpu does not support Python2.7.

Hjwjames commented 6 years ago

@JiaYK @VictoriaBentell Dear friends, it this means I success training now? the epoch and step goes strange

INFO:tensorflow:Restoring parameters from ./logdir/default1/train1\epoch_24_step_24 Model loaded. mode: train1, model_name: epoch_24_step_24 acc: 0.0425952 loss: 3.95336

WARNING:tensorflow:From G:\code\python\myfile\ASR\deep-voice-conversion-master\models.py:73: arg_max (from tensorflow.python.ops.gen_math_ops) is deprecated and will be removed in a future version. Instructions for updating: Use argmax instead INFO:tensorflow:Restoring parameters from ./logdir/default1/train1\epoch_24_step_24 Model loaded. mode: train1, model_name: epoch_24_step_24 acc: 0.0476528 loss: 3.8893

WARNING:tensorflow:From G:\code\python\myfile\ASR\deep-voice-conversion-master\models.py:73: arg_max (from tensorflow.python.ops.gen_math_ops) is deprecated and will be removed in a future version. Instructions for updating: Use argmax instead INFO:tensorflow:Restoring parameters from ./logdir/default1/train1\epoch_26_step_26 Model loaded. mode: train1, model_name: epoch_26_step_26 acc: 0.0535262 loss: 3.91394

WARNING:tensorflow:From G:\code\python\myfile\ASR\deep-voice-conversion-master\models.py:73: arg_max (from tensorflow.python.ops.gen_math_ops) is deprecated and will be removed in a future version. Instructions for updating: Use argmax instead INFO:tensorflow:Restoring parameters from ./logdir/default1/train1\epoch_26_step_26 Model loaded. mode: train1, model_name: epoch_26_step_26 acc: 0.0459833 loss: 3.98388

VictoriaBentell commented 6 years ago

Those warnings are normal, so if you just let it keep training you should be fine.

sachinsahoo11 commented 6 years ago

How did you solve the "argument" problem in the first case? I am facing the same issue.

Techmind commented 6 years ago

@VictoriaBentell did y manage to get the whole pipeline working (with convert) ? Is 12 epochs of train1 enough ?

CIDFarwin commented 6 years ago

For those still struggling with the initial problem:

The "case" the script asks for is your name for the case, passed as an argument. e.g. python train1.py test where "test" can be anything. I suggest naming it after the dataset you use, such as python train1.py TIMIT if you're using the TIMIT dataset.

ryancwalsh commented 6 years ago

I'm surprised this isn't in the docs. It was confusing. Thanks to @CIDFarwin and https://github.com/andabi/deep-voice-conversion/issues/35#issuecomment-387593936

oracle9i88 commented 6 years ago

test what erver

Traceback (most recent call last): File "train1.py", line 76, in print('case: {}, logdir: {}'.format(args.case1, args.case, logdir_train1))

jackylee1 commented 5 years ago

You can get the trained weights here so you don't have to worry about Train1.

thank you

xingchensong commented 5 years ago

reading hparams.py and u can find your answer

    default_hp = load_hparam(default_file)                               
    user_hp = load_hparam(user_file)                               
    hp_dict = Dotdict(merge_dict(user_hp[case], default_hp) if case in user_hp else default_hp)

here the author merged two dicts: user_hp[case] & default_hp , when u dig into those .yaml files in hparams dir &merge_dict() function in hparams.py ,u can find that :case may refer to different attempt on training hyperparamters(case just like a Fine-tuned version number) ,as u can see the merge_dict() fn replace params in default_hp with same named params in user_hp[case]

xingchensong commented 5 years ago

raise NoBackendError() audioread.NoBackendError It raise NobackendError...... @JiaYK @VictoriaBentell Do you know anything about it? Any comments would be much appreciated..... Thanks for your answer... I haven't put my Timit dataset in it last time

i meet the same problem ,may i ask u for the answer?

linlinsongyun commented 5 years ago

image my code with train1.py stunk here, anyone konw how to solve it?

sunyuxiu commented 3 years ago

You can get the trained weights here so you don't have to worry about Train1.

hello,do you still have the trained weights from drive.google.com?I can't open the url and also can't download the weights.Could you send the weights to me or download then send to me?thanks.@VictoriaBentell

VictoriaBentell commented 3 years ago

You can get the trained weights here so you don't have to worry about Train1.

hello,do you still have the trained weights from drive.google.com?I can't open the url and also can't download the weights.Could you send the weights to me or download then send to me?thanks.@VictoriaBentell

It works for me in an incognito window on Windows 10 in Google Chrome. It's been a while but I think the file you should be looking at is "checkpoint"