neural-amp-modeler

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

commit 213b72b70917e8acb655bed899b34d509a6448c0
parent d489ef8ad80898d6105b3e13b19195e0cc71e82f
Author: Steven Atkinson <[email protected]>
Date:   Sun, 28 May 2023 13:29:18 -0700

Rename demo output file from "overdrive.wav" to "output.wav" (#256)

Update README.md

Rename "overdrive.wav" as "output.wav"
Diffstat:
MREADME.md | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -67,14 +67,14 @@ from the terminal. For users looking to get more fine-grained control over the modeling process, NAM includes a training script that can be run from the terminal. In order to run it #### Download audio files -Download the [v1_1_1.wav](https://drive.google.com/file/d/1v2xFXeQ9W2Ks05XrqsMCs2viQcKPAwBk/view?usp=share_link) and [overdrive.wav](https://drive.google.com/file/d/14w2utgL16NozmESzAJO_I0_VCt-5Wgpv/view?usp=share_link) to a folder of your choice +Download the [v1_1_1.wav](https://drive.google.com/file/d/1v2xFXeQ9W2Ks05XrqsMCs2viQcKPAwBk/view?usp=share_link) and [output.wav](https://drive.google.com/file/d/14w2utgL16NozmESzAJO_I0_VCt-5Wgpv/view?usp=share_link) to a folder of your choice #### Update data configuration -Edit `bin/train/data/single_pair.json` to point to relevant audio files +Edit `bin/train/data/single_pair.json` to point to relevant audio files: ```json "common": { "x_path": "C:\\path\\to\\v1_1_1.wav", - "y_path": "C:\\path\\to\\overdrive.wav", + "y_path": "C:\\path\\to\\output.wav", "delay": 0 } ```