neural-amp-modeler

Neural network emulator for guitar amplifiers
Log | Files | Refs | README | LICENSE

commit e5f0dcd4f3efbcd7746ad68deeec306ede20f10f
parent 90c2add4b399d8088c788d512f73baf02288e8bb
Author: Steven Atkinson <steven@atkinson.mn>
Date:   Thu,  9 Nov 2023 19:09:31 -0800

Fix error message (#340)


Diffstat:
Mnam/train/core.py | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nam/train/core.py b/nam/train/core.py @@ -504,10 +504,10 @@ def _esr_validation_replicate_msg(threshold: float) -> str: return ( f"Validation replicates have a self-ESR of over {threshold}. " "Your gear doesn't sound like itself when played twice!\n\n" - "Possible causes:" - " * Your signal chain is too noisy." - " * There's a time-based effect (chorus, delay, reverb) turned on." - " * Some knob got moved while reamping." + "Possible causes:\n" + " * Your signal chain is too noisy.\n" + " * There's a time-based effect (chorus, delay, reverb) turned on.\n" + " * Some knob got moved while reamping.\n" " * You started reamping before the amp had time to warm up fully." )