| import sagemaker |
| import boto3 |
| from sagemaker.huggingface import HuggingFace |
|
|
| try: |
| role = sagemaker.get_execution_role() |
| except ValueError: |
| iam = boto3.client('iam') |
| role = iam.get_role(RoleName='sagemaker_execution_role')['Role']['Arn'] |
| |
| hyperparameters = { |
| 'model_name_or_path':'grammarly/coedit-large', |
| 'output_dir':'/opt/ml/model' |
| |
| |
| } |
|
|
| |
| git_config = {'repo': 'https://github.com/huggingface/transformers.git','branch': 'v4.26.0'} |
|
|
| |
| huggingface_estimator = HuggingFace( |
| entry_point='train.py', |
| source_dir='./path/to/script', |
| instance_type='ml.p3.2xlarge', |
| instance_count=1, |
| role=role, |
| git_config=git_config, |
| transformers_version='4.26.0', |
| pytorch_version='1.13.1', |
| py_version='py39', |
| hyperparameters = hyperparameters |
| ) |
|
|
| |
| huggingface_estimator.fit() |