-
creating a custom module in slurm카테고리 없음 2024. 11. 6. 21:47
The following shows the example of creating a custom module for PyTorch in Slurm.Creating a custom module for PyTorch version 2.5.1 in a Slurm-managed high-performance computing (HPC) environment involves several steps:Create a virtual environmentmkdir -p modules/pytorch/2.5.1python -m venv modules/pytorch/2.5.1source activate modules/pytorch/2.5.1/bin/activateInstall PyTorch and Other Libraries..
-
intuitive understanding of magnitude and phase from STFT카테고리 없음 2024. 10. 22. 18:51
In the context of audio signals, the magnitude and phase obtained from the Short-Time Fourier Transform (STFT) have intuitive meanings related to the perception and structure of sound:Magnitude:The magnitude represents the strength (or amplitude) of each frequency component in the signal at a given time. Intuitively, it tells you:How loud each frequency is: Higher magnitude values correspond to ..
-
rsync, parallel카테고리 없음 2024. 10. 22. 13:19
Basic Form of rsyncrsync -rv --progress local_dir/ destination/-r: recursive-v: verboseTransfer a directory from local PC to an EBS attached to an ec2 instance rsync -rv --progress -e "ssh -i ~/.ssh/your-ssh-key" local_dir/ destination/-e is for inputting credential(example)rsync -rv --progress -e "ssh -i ~/.ssh/daesoo-linux-pc.pem" SoundlySpeech_24000hz/ ec2-user@ec2-13-60-224-245.eu-north-1.co..