NeuralPi

Raspberry Pi guitar pedal using neural networks to emulate real amps and effects
Log | Files | Refs | Submodules | README

commit 271f088a327a11ae486520e7c1c517f13f01a350
parent 4ec80cf1200394706113ca4c2167d1b305e6c2e8
Author: keith <[email protected]>
Date:   Mon, 21 Jun 2021 20:26:05 -0500

Updated model names to solve sorting difference on linux

Diffstat:
MNeuralPi.jucer | 7+++----
MSource/PluginProcessor.cpp | 8++++----
Rmodels/bj_model_best.json -> models/BluesJR_FullD.json | 0
Rmodels/ts9_model_best.json -> models/TS9_FullD.json | 0
Mresources/CMakeLists.txt | 4++--
5 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/NeuralPi.jucer b/NeuralPi.jucer @@ -7,12 +7,11 @@ displaySplashScreen="1"> <MAINGROUP id="zI9r2C" name="NeuralPi"> <GROUP id="{810D2D07-FCAC-0F25-F63F-DCF49FEE10C7}" name="Resources"> - <FILE id="V1lm9D" name="bj_model_best.json" compile="0" resource="1" - file="models/bj_model_best.json"/> + <FILE id="hQ0vq1" name="BluesJR_FullD.json" compile="0" resource="1" + file="models/BluesJR_FullD.json"/> <FILE id="JubKNX" name="npi_background.jpg" compile="0" resource="1" file="resources/npi_background.jpg"/> - <FILE id="lkEjdY" name="ts9_model_best.json" compile="0" resource="1" - file="models/ts9_model_best.json"/> + <FILE id="wH6oji" name="TS9_FullD.json" compile="0" resource="1" file="models/TS9_FullD.json"/> </GROUP> <GROUP id="{70CE292C-E9C5-C029-B95A-F7DF41E5F74C}" name="Source"> <FILE id="VgCJPH" name="AmpOSCReceiver.h" compile="0" resource="0" diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp @@ -334,8 +334,8 @@ void NeuralPiAudioProcessor::installTones() //==================================================================== { // Default tones - File ts9_tone = userAppDataDirectory_tones.getFullPathName() + "/ts9_model_best.json"; - File bjdirty_tone = userAppDataDirectory_tones.getFullPathName() + "/bj_model_best.json"; + File ts9_tone = userAppDataDirectory_tones.getFullPathName() + "/TS9_FullD.json"; + File bjdirty_tone = userAppDataDirectory_tones.getFullPathName() + "/BluesJR_FullD.json"; if (ts9_tone.existsAsFile() == false) { std::string string_command = ts9_tone.getFullPathName().toStdString(); @@ -343,7 +343,7 @@ void NeuralPiAudioProcessor::installTones() std::ofstream myfile; myfile.open(char_ts9_tone); - myfile << BinaryData::ts9_model_best_json; + myfile << BinaryData::TS9_FullD_json; myfile.close(); } @@ -354,7 +354,7 @@ void NeuralPiAudioProcessor::installTones() std::ofstream myfile; myfile.open(char_bjdirty); - myfile << BinaryData::bj_model_best_json; + myfile << BinaryData::BluesJR_FullD_json; myfile.close(); } diff --git a/models/bj_model_best.json b/models/BluesJR_FullD.json diff --git a/models/ts9_model_best.json b/models/TS9_FullD.json diff --git a/resources/CMakeLists.txt b/resources/CMakeLists.txt @@ -1,8 +1,8 @@ juce_add_binary_data(BinaryData SOURCES logo.png npi_background.jpg - ../models/bj_model_best.json - ../models/ts9_model_best.json + ../models/BluesJR_FullD.json + ../models/TS9_FullD.json ) # Need to build BinaryData with -fPIC flag on Linux