This commit is contained in:
Zchen
2025-10-15 20:45:25 +08:00
parent 3b242b908d
commit e8f0308fef
5 changed files with 409 additions and 19 deletions

View File

@@ -190,6 +190,10 @@ class TensorFlowImplementationTester:
# Test NoisySpeechModel
try:
# First calculate expected dimensions from NoiseModel test
expected_time_steps = (20 - 4) // 2 + 1
expected_features = 512 * 4
noisy_model = NoisySpeechModel(
neural_dim=expected_features, # Takes processed input
n_units=64,