├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── huggingface ├── code │ ├── inference.py │ └── requirements.txt └── huggingface.ipynb ├── images └── solution_overview.png └── pytorch ├── code ├── inference.py └── requirements.txt └── pytorch.ipynb /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/README.md -------------------------------------------------------------------------------- /huggingface/code/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/huggingface/code/inference.py -------------------------------------------------------------------------------- /huggingface/code/requirements.txt: -------------------------------------------------------------------------------- 1 | openai-whisper 2 | ffmpeg-python 3 | torchaudio 4 | nvgpu -------------------------------------------------------------------------------- /huggingface/huggingface.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/huggingface/huggingface.ipynb -------------------------------------------------------------------------------- /images/solution_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/images/solution_overview.png -------------------------------------------------------------------------------- /pytorch/code/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/pytorch/code/inference.py -------------------------------------------------------------------------------- /pytorch/code/requirements.txt: -------------------------------------------------------------------------------- 1 | openai-whisper 2 | ffmpeg-python 3 | torchaudio 4 | nvgpu -------------------------------------------------------------------------------- /pytorch/pytorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-sagemaker-host-and-inference-whisper-model/HEAD/pytorch/pytorch.ipynb --------------------------------------------------------------------------------