skip to Main Content

How to use AWS Sagemaker with newer version of Huggingface Estimator? – Docker

When trying to use Huggingface estimator on sagemaker, Run training on Amazon SageMaker e.g. # create the Estimator huggingface_estimator = HuggingFace( entry_point='train.py', source_dir='./scripts', instance_type='ml.p3.2xlarge', instance_count=1, role=role, transformers_version='4.17', pytorch_version='1.10', py_version='py38', hyperparameters = hyperparameters ) When I tried to increase the version…

VIEW QUESTION

torchaudio.io not properly using ffmpeg – Ubuntu

I am following this tutorial about hardware-accelerated gpu encoding/decoding for PyTorch [https://pytorch.org/audio/main/hw_acceleration_tutorial.html], I am encountering an error with the following code: import torch import torchaudio print(torch.__version__) # 1.14.0.dev20221013+cu116 print(torchaudio.__version__) # 0.13.0.dev20221013+cu116 print(torchaudio._extension._FFMPEG_INITIALIZED) # True from torchaudio.io import StreamReader local_src =…

VIEW QUESTION
Back To Top
Search