diff options
author | Pherkel | 2023-08-17 18:53:35 +0200 |
---|---|---|
committer | Pherkel | 2023-08-17 18:53:35 +0200 |
commit | cc401846811207b8aa2da881f52e8d37f06ef6cd (patch) | |
tree | 43ffb0ee52d8914a7307e0e8e54768feb85d5d48 /swr2_asr/__main__.py | |
parent | c9136fbba5ac5bd394a9c164173b64e22a1b2950 (diff) |
Added poetry, improve project structure
Diffstat (limited to 'swr2_asr/__main__.py')
-rw-r--r-- | swr2_asr/__main__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/swr2_asr/__main__.py b/swr2_asr/__main__.py new file mode 100644 index 0000000..be294fb --- /dev/null +++ b/swr2_asr/__main__.py @@ -0,0 +1,12 @@ +"""Main entrypoint for swr2-asr.""" +import torch +import torchaudio + +if __name__ == "__main__": + # test if GPU is available + print("GPU available: ", torch.cuda.is_available()) + + # test if torchaudio is installed correctly + print("torchaudio version: ", torchaudio.__version__) + print("torchaudio backend: ", torchaudio.get_audio_backend()) + print("torchaudio info: ", torchaudio.get_audio_backend()) |