NeuralPi

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

commit fce86b1906d45b0dc68ec42f7b82f89088fb431c
parent f94c393d779c27c1db79e8a93835a544000300e5
Author: Keith Bloemer <[email protected]>
Date:   Fri,  4 Jun 2021 13:30:20 -0500

Create update_models.bat
Diffstat:
Ascripts/update_models.bat | 30++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+), 0 deletions(-)

diff --git a/scripts/update_models.bat b/scripts/update_models.bat @@ -0,0 +1,30 @@ +::############################################################################ +:: NeuralPi - Update Models - Windows Script +:: +:: This script transfers models from a Windows computer to the NeuralPi, +:: and from the NeuralPi back to the host computer. Edit the Raspberry Pi +:: IP address (after connecting to a local Wifi Network), and run this +:: script from a Windows computer running the NeuralPi plugin. +:: +:: Note: Ensure OpenSSH is installed. This comes installed with Windows as of 2018. +::############################################################################ + +:: USER INPUTS + +set "rpi_ip_address=127.0.0.1" # Update this field with the Raspberry Pi's IP address + + +:: Edit <YOUR_USERNAME> with your Windows Username + +set "host_model_path=C:/Users/<YOUR_USERNAME>/AppData/Roaming/GuitarML/NeuralPi/tones" ::Typical Windows 10 Path + + +set "rpi_model_path=/home/mind/.config/GuitarML/NeuralPi/tones" :: Rpi with Elk OS Path (shouldn't need to change) + +############################################################################# + +# Copy all models from local computer to Rpi +scp %host_model_path%/*.json root@$rpi_ip_address:%rpi_model_path%/ + +# Copy all models from Rpi to local computer +scp root@%rpi_ip_address%:%rpi_model_path%/*.json %host_model_path%/