Update app.py
Browse files
app.py
CHANGED
@@ -90,7 +90,7 @@ def infer_img2img(prompt, audio_path, desired_strength, progress=gr.Progress(tra
|
|
90 |
|
91 |
# Apply fix only if the spectrogram mean is too low
|
92 |
if spec_mean_before < -5.0:
|
93 |
-
print(f"⚠️ Spectrogram too low (Mean: {spec_mean_before}).
|
94 |
else:
|
95 |
print(f"✅ Spectrogram looks normal (Mean: {spec_mean_before}). No boost needed.")
|
96 |
|
|
|
90 |
|
91 |
# Apply fix only if the spectrogram mean is too low
|
92 |
if spec_mean_before < -5.0:
|
93 |
+
print(f"⚠️ Spectrogram too low (Mean: {spec_mean_before}).")
|
94 |
else:
|
95 |
print(f"✅ Spectrogram looks normal (Mean: {spec_mean_before}). No boost needed.")
|
96 |
|