Skip to content

Commit

Permalink
Update batch scripts to reflect use of conda instead of pip.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Sep 2, 2024
1 parent 8f66f0f commit f79cccb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions radae_rx.bat
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ rem
rem Note: Current RADAE scripts seem to require being executed from
rem the RADAE folder.
cd %RADAE_PATH%
set PATH=%RADAE_VENV%\scripts;%PATH%
%RADAE_VENV%\scripts\python.exe -u int16tof32.py --zeropad | %RADAE_VENV%\scripts\python.exe -u radae_rx.py model19_check3\checkpoints\checkpoint_epoch_100.pth -v 2 --auxdata | build\src\lpcnet_demo -fargan-synthesis - -
set PATH=%RADAE_VENV%;%PATH%
%RADAE_VENV%\python.exe -u int16tof32.py --zeropad | %RADAE_VENV%\python.exe -u radae_rx.py model19_check3\checkpoints\checkpoint_epoch_100.pth -v 2 --auxdata | build\src\lpcnet_demo -fargan-synthesis - -
4 changes: 2 additions & 2 deletions radae_tx.bat
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ rem
rem Note: Current RADAE scripts seem to require being executed from
rem the RADAE folder.
cd %RADAE_PATH%
set PATH=%RADAE_VENV%\scripts;%PATH%
build\src\lpcnet_demo -features - - | %RADAE_VENV%\scripts\python.exe -u radae_tx.py model19_check3\checkpoints\checkpoint_epoch_100.pth --auxdata | %RADAE_VENV%\scripts\python.exe -u f32toint16.py --real --scale 16383
set PATH=%RADAE_VENV%;%PATH%
build\src\lpcnet_demo -features - - | %RADAE_VENV%\python.exe -u radae_tx.py model19_check3\checkpoints\checkpoint_epoch_100.pth --auxdata | %RADAE_VENV%\python.exe -u f32toint16.py --real --scale 16383

0 comments on commit f79cccb

Please sign in to comment.