xiaoyaoxiaoxian

Results 6 comments of xiaoyaoxiaoxian

> Hi, > > As a new learner in deep learning, > I'm a little puzzled about the cost definition, > > `def my_crossentropy(y_true, y_pred): return K.mean(2*K.abs(y_true-0.5) * K.binary_crossentropy(y_pred, y_true),...

> ![cross_entropy_fail](https://user-images.githubusercontent.com/2500277/78146261-36839000-7432-11ea-9b05-14246ae79b83.png) > > I created a plot to show the difference. The blue and orange lines are showing the result of correct usage. The red and green ones are...

> The gain of -1 is set if there is no (or just low) signal energy whether in the clean speech nor in the noise. In that case it doesn't...

> These questions are already answered. > > Tanh vs ReLU: > #58 > #79 > > For the amount of training data see: > https://jmvalin.ca/papers/rnnoise_mmsp2018.pdf Thanks. I checked the...

> I followed to change the my_crossentropy() to have the y_true as the first argument and y_pred as the second argument in > def my_crossentropy(y_true, y_pred): > return K.mean(2*K.abs(y_true-0.5) *...