commit e2e48f9943f5e47a430cd2f80c2671d79de91b41
parent a97558671cd539977dbe4d0328aaeae0f2215b60
Author: keith <[email protected]>
Date: Fri, 18 Jun 2021 19:08:44 -0500
Merge branch 'osc-user-controls' of https://github.com/GuitarML/NeuralPi into osc-user-controls
Diffstat:
4 files changed, 15 insertions(+), 21 deletions(-)
diff --git a/README.md b/README.md
@@ -1,6 +1,6 @@
# NeuralPi
-NeuralPi is a guitar pedal using neural networks to emulate real amps and pedals on a Raspberry Pi 4. The NeuralPi software is a VST3 plugin built with JUCE, which can be run as a normal audio plugin or cross-compiled to run on the Raspberry Pi 4 with [Elk Audio OS](https://elk.audio/). NeuralPi is intended as a bare-bones plugin to build on. The pedal runs high quality amp/pedal models on an economical DIY setup, costing around $120 for hardware to build yourself. <br>
+NeuralPi is a guitar pedal using neural networks to emulate real amps and pedals on a Raspberry Pi 4. The NeuralPi software is a VST3 plugin built with JUCE, which can be run as a normal audio plugin or cross-compiled to run on the Raspberry Pi 4 with [Elk Audio OS](https://elk.audio/). The NeuralPi includes model selection, EQ, and gain/volume controls from a remote instance of the plugin over WiFi. The pedal runs high quality amp/pedal models on an economical DIY setup, costing around $120 for hardware to build yourself. <br>
Check out a video demo on [YouTube](https://www.youtube.com/watch?v=_3zFD6h6Wrc)<br>
Check out the step by step build guide published on [Towards Data Science](https://towardsdatascience.com/neural-networks-for-real-time-audio-raspberry-pi-guitar-pedal-bded4b6b7f31)
@@ -24,26 +24,21 @@ For the cross-compiled Raspberry Pi / Elk Audio OS compatible VST3 plugin, downl
WARNING: The audio output of the NeuralPi is at line level. Guitar amplifiers expect a low level electric guitar signal (instrument level). When using the NeuralPi with a guitar amp, start with the master volume at 0 and SLOWLY increase from there.
-## Changing Models
+## Adding New Models
-The NeuralPi running on Elk will load one model per instance of the plugin. By default this is the "bj_model_best.json" file. Model select controls will be added in the future, but for now you must overwrite this file to load different models. On Elk Audio OS, the models will be installed here after running the plugin for the first time:
+Once your NeuralPi is set up, you can add new models from a remote computer using the following steps:
-```/home/mind/.config/JUCE/NeuralPi/tones```
-
-Backup the Blues Junior amp model with this:
-
-```cp bj_model_best.json bj_backup.json```
-
-And overwrite the original model to try a new one:
-
-```cp ts9_model_best.json bj_model_best.json```
-
-If you need to revert back to the original state, remove the ```/tones``` folder and restart the plugin. The "bj_model_best.json" is a Fender Blues Jr. amplifier at full gain, and the "ts9_model_best.json" is the Ibanez TS9 overdrive pedal at full drive.
+1. From the remote computer, run the plugin and add new models using the "Import Tone" button. Optionally, you can manually add new json files to the ```Documents/GuitarML/Chameleon/tones``` directory.
+ Note: The "tones" directory is created the first time you run NeuralPi.
+2. Turn on your WiFi enabled NeuralPi (see [Elk documentation](https://elk-audio.github.io/elk-docs/html/documents/working_with_elk_board.html?highlight=wifi#connecting-to-your-board) for connecting the Raspberry Pi to a local WiFi network)
+3. Download the ```update_models.bat```(Windows) or ```update_models.sh```(Mac/Linux) to your remote computer. These scripts are located in the "scripts/" directory of this repository. You must change the ```rpi_ip_address``` and ```host_model_path``` to the Raspberry Pi's IP address and path to your json tones (on remote computer). The json files will be first copied from the remote computer to the NeuralPi, and then back from the NeuralPi to the remote computer. This allows updating models from the NeuralPi when you connect a new remote computer.
+4. From the remote computer connected to the same local WiFi network as NeuralPi, run the ```update_models.bat```(Windows) or ```update_models.sh```(Mac/Linux) from a cmd terminal. <br><br>
+Note: It is important that all models files have unique names with no spaces. <br>
+Note: Ensure from the terminal output that you were able to connect over WiFi, and that the model files were copied properly. <br><br>
+6. Restart both the NeuralPi and the remote instance of the NeuralPi plugin. From the remote NeuralPi GUI, enter the Raspberry Pi's IP address. As long as both devices are connected to the local WiFi network, you will be able select models from the NeuralPi plugin dropdown list to change models running on the Raspberry Pi.
## To Do
-Currently, the NeuralPi plugin running on Elk OS has no user controls. It runs a single model that can be swapped out before running the plugin. The next step is to add user controls via OSC messages, so that a remote instance of the plugin can control the NeuralPi over Wifi. These controls will include Gain/Volume, EQ, and model selection.
-
Elk Audio OS also supports physical controls through [Sensei](https://github.com/elk-audio/sensei). Gain/Volume and EQ knobs can be added, as well as a LCD screen for selecting different models. One could build an actual guitar pedal with NeuralPi and any number of other digital effects and controls.
While running PyTorch locally on the Raspberry Pi might be a stretch, it is fully capable of recording high quality audio with the HiFiBerry hat. Implement a capture feature by automating the recording of input/output samples, pushing to remote computer for training, then updating the Pi with the newly trained model.
diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h
@@ -98,7 +98,7 @@ public:
void resetDirectory(const File& file);
std::vector<File> jsonFiles;
File currentDirectory = File::getCurrentWorkingDirectory().getFullPathName();
- File userAppDataDirectory = File::getSpecialLocation(File::userApplicationDataDirectory).getChildFile(JucePlugin_Manufacturer).getChildFile(JucePlugin_Name);
+ File userAppDataDirectory = File::getSpecialLocation(File::userDocumentsDirectory).getChildFile(JucePlugin_Manufacturer).getChildFile(JucePlugin_Name);
File userAppDataDirectory_tones = userAppDataDirectory.getFullPathName() + "/tones";
// Pedal/amp states
diff --git a/scripts/update_models.bat b/scripts/update_models.bat
@@ -16,7 +16,7 @@ set "rpi_ip_address=127.0.0.1"
:: Typical Windows 10 Path, edit <YOUR_USERNAME> with your Windows Username
-set "host_model_path=C:/Users/<YOUR_USERNAME>/AppData/Roaming/GuitarML/NeuralPi/tones"
+set "host_model_path=C:/Users/<YOUR_USERNAME>/Documents/GuitarML/NeuralPi/tones"
:: Rpi with Elk OS Path (shouldn't need to change)
diff --git a/scripts/update_models.sh b/scripts/update_models.sh
@@ -17,9 +17,8 @@ rpi_ip_address=127.0.0.1 # Update this field with the Raspberry Pi's IP address
# Uncomment the appropriate path for your computer:
-# host_model_path=~/.config/GuitarML/NeuralPi/tones #Typical Linux Path
-# host_model_path=/Library/GuitarML/NeuralPi/tones #Typical Mac Path (System Install)
-# host_model_path=~/Library/GuitarML/NeuralPi/tones #Typical Mac Path (User Install)
+# host_model_path=~/Documents/GuitarML/NeuralPi/tones #Typical Linux Path
+# host_model_path=~/Documents/GuitarML/NeuralPi/tones #Typical Mac Path
rpi_model_path=/home/mind/.config/GuitarML/NeuralPi/tones # Rpi with Elk OS Path (shouldn't need to change)