SmartGuitarAmp

Guitar plugin made with JUCE that uses neural networks to emulate a tube amplifier
Log | Files | Refs | Submodules | README

commit 60654a863f538819933d7222286ba12b7a395068
parent ec542446484b8303a2d974fe9335cf00f71feef3
Author: Keith Bloemer <[email protected]>
Date:   Fri, 25 Sep 2020 14:58:29 -0500

Update README.md
Diffstat:
MREADME.md | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -43,13 +43,13 @@ To swap out the default models with your own, do the following steps: 2. Open the Visual Studio solution (or other target IDE). You should see the new .json model files under "Resources" in the solution explorer. 3. Open PluginProcessor.cpp and edit lines 208 or 219 (this determines which model is used on the Lead or Clean channel): - +``` (208) WaveNetLoader loader2(BinaryData::bluej_fullD_p0153_json); --> WaveNetLoader loader2(BinaryData::YOUR_NEW_LEAD_MODEL_json); (219) WaveNetLoader loader2(BinaryData::bluej_clean_p0088_json); --> WaveNetLoader loader2(BinaryData::YOUR_NEW_CLEAN_MODEL_json); - +``` Where "YOUR_NEW...MODEL" is filename of your json file. You can edit either one, or both, but keep in mind they are separately trained models. 4. Build SmartAmp in Release mode.