This is an old revision of the document!
Building the scripts
We will run Whisper using a script in order to facilitate the use of the tool. Follow the steps here to set up the script and run it, read the next section of the guide to learn more about the content of the script file itself.
In order to run the script, you will first have to create it. Open your text editor of choice and copy the highlighted code below into the new file. Save the file with the name: whisper_runall.sh
.
#!/bin/bash
#SBATCH –time=08:00:00
#SBATCH –gpus-per-node=1
#SBATCH –mem=16000
module load PyTorch/1.12.1-foss-2022a-CUDA-11.7.0
source $HOME/.envs/whisper/bin/activate
whisper $HOME/whisper_audio/* –model large-v2 –output_dir $HOME/whisper_output/
The example below uses the vi
text editor found in HPC to create the script. Follow the instructions in the figures to create the script using this specific text editor:
- Double-check that the content of the script is correct. If it is, it should look exactly like in the picture below.
- Finally, to save the file and exit from
vi
, first pressesc
on your keyboard. Then type:wq
directly on your keyboard. The input should be displayed at the bottom of the terminal like shown in the figure. Press enter to commit the command. The punctuation is to let the editor know that a command is coming, thew
stands for “write”, while theq
stands for “quit”.
Content of the batch script
The batch script you created is the starting point for all your jobs relating to Whisper. Below is a brief explanation of the different lines present in the file. Please read the next steps carefully if you wish to modify the content of the script. For convenience's sake, also make sure to always run the script through sbatch
, rather than run the steps separately by hand.