Issue with Training and testing
avisin02 opened this issue · 12 comments
Hello Yong,
I am very much impressed with work. I am trying to use the code on my data. My setup is as follows:
- Right now I am using Python 3.6 on windows 10.
- I have implemented runme.sh in a python code.
- For training I am using 1350 sentences and 8 types of noises of duration same as combined duration of sentences.
- For testing I am using 150 sentences with some noise same as training noise and some others.
Now, the issue is that the training is less but not close to 0 and testing loss is way more than expected and enhanced wav files have no sign of speech in any noise condition.
What should be done in this case? I am also attaching the plot of training stat.
Regards,
Ajay
do you solve your problem , I miss the same problem
when I run the code in mixture2clean .it occurs a probelm。I changed the code from n_pad = (n_concat - 1) / 2 to int(n_pad = (n_concat - 1) / 2) .I don't think this change will affect the code.
thank you for your replying ,I have tried this code on linux using this mini data,but this problem still exists.
I have some problems as follw:
1.when I run this code ,it occur this problem Traceback (most recent call last):
File "prepare_data.py", line 464, in
pack_features(args)
File "prepare_data.py", line 303, in pack_features
mixed_x = pad_with_border(mixed_x, n_pad)
File "prepare_data.py", line 361, in pad_with_border
x_pad_list = [x[0:1]] * n_pad + [x] + [x[-1:]] * n_pad
TypeError: can't multiply sequence by non-int of type 'float' .I changed the code from n_pad = (n_concat - 1) / 2 to int(n_pad = (n_concat - 1) / 2) .I want to konw this change will affect the code??
2.though I use the mini data ,but I get the enhace wav which is not audible .it seem unnomal. if I increase the trianning data . will it become audible?
Sorry, the above expression is not very clear. I get enhanced voice which can be played but confused. Does this problem have anything to do with the size of the training level?
Thank you 。Is the RBM code include in this code?