Instructions to use braxtongough/HandyAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use braxtongough/HandyAI with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="braxtongough/HandyAI")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("braxtongough/HandyAI", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use braxtongough/HandyAI with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "braxtongough/HandyAI" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "braxtongough/HandyAI", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/braxtongough/HandyAI
- SGLang
How to use braxtongough/HandyAI with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "braxtongough/HandyAI" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "braxtongough/HandyAI", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "braxtongough/HandyAI" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "braxtongough/HandyAI", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use braxtongough/HandyAI with Docker Model Runner:
docker model run hf.co/braxtongough/HandyAI
Delete launch_training.py
Browse files- launch_training.py +0 -36
launch_training.py
DELETED
|
@@ -1,36 +0,0 @@
|
|
| 1 |
-
import sagemaker
|
| 2 |
-
import boto3
|
| 3 |
-
from sagemaker.huggingface import HuggingFace
|
| 4 |
-
|
| 5 |
-
try:
|
| 6 |
-
role = sagemaker.get_execution_role()
|
| 7 |
-
except ValueError:
|
| 8 |
-
iam = boto3.client('iam')
|
| 9 |
-
role = iam.get_role(RoleName='sagemaker_execution_role')['Role']['Arn']
|
| 10 |
-
|
| 11 |
-
hyperparameters = {
|
| 12 |
-
'model_name_or_path':'braxtongough/HandyAI',
|
| 13 |
-
'output_dir':'/opt/ml/model'
|
| 14 |
-
# add your remaining hyperparameters
|
| 15 |
-
# more info here https://github.com/huggingface/transformers/tree/v4.37.0/examples/pytorch/language-modeling
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
# git configuration to download our fine-tuning script
|
| 19 |
-
git_config = {'repo': 'https://github.com/huggingface/transformers.git','branch': 'v4.37.0'}
|
| 20 |
-
|
| 21 |
-
# creates Hugging Face estimator
|
| 22 |
-
huggingface_estimator = HuggingFace(
|
| 23 |
-
entry_point='run_clm.py',
|
| 24 |
-
source_dir='./examples/pytorch/language-modeling',
|
| 25 |
-
instance_type='ml.p3.2xlarge',
|
| 26 |
-
instance_count=1,
|
| 27 |
-
role=role,
|
| 28 |
-
git_config=git_config,
|
| 29 |
-
transformers_version='4.37.0',
|
| 30 |
-
pytorch_version='2.1.0',
|
| 31 |
-
py_version='py310',
|
| 32 |
-
hyperparameters = hyperparameters
|
| 33 |
-
)
|
| 34 |
-
|
| 35 |
-
# starting the train job
|
| 36 |
-
huggingface_estimator.fit()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|