vbelz / Speech-enhancement

Deep learning for audio denoising
MIT License
620 stars 124 forks source link

[BUG]: Validation against test data #33

Closed AbhijithGanesh closed 9 months ago

AbhijithGanesh commented 9 months ago

Training error

At line 60, as mentioned here you're validating against test data while training ? Isn't it supposed to be train data?

python3 history = generator_nn.fit(X_train, y_train, epochs=epochs, batch_size=batch_size, shuffle=True, callbacks=[checkpoint], verbose=1, validation_data=(X_test, y_test))