Text Generation
Transformers
Safetensors
mistral
text-generation-inference
8-bit precision
bitsandbytes
Instructions to use mkeohane01/jamsesh_testing with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mkeohane01/jamsesh_testing with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mkeohane01/jamsesh_testing")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("mkeohane01/jamsesh_testing") model = AutoModelForMultimodalLM.from_pretrained("mkeohane01/jamsesh_testing") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mkeohane01/jamsesh_testing with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mkeohane01/jamsesh_testing" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mkeohane01/jamsesh_testing", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/mkeohane01/jamsesh_testing
- SGLang
How to use mkeohane01/jamsesh_testing 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 "mkeohane01/jamsesh_testing" \ --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": "mkeohane01/jamsesh_testing", "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 "mkeohane01/jamsesh_testing" \ --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": "mkeohane01/jamsesh_testing", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use mkeohane01/jamsesh_testing with Docker Model Runner:
docker model run hf.co/mkeohane01/jamsesh_testing
| from typing import Any, Dict | |
| import torch | |
| from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, pipeline | |
| dtype = torch.bfloat16 if torch.cuda.get_device_capability()[0] == 8 else torch.float16 | |
| class EndpointHandler: | |
| def __init__(self, path=""): | |
| quantization_config = BitsAndBytesConfig(load_in_8bit=True) | |
| tokenizer = AutoTokenizer.from_pretrained(path, trust_remote_code = True) | |
| model = AutoModelForCausalLM.from_pretrained( | |
| path, | |
| return_dict = True, | |
| device_map = "auto", | |
| torch_dtype = dtype, | |
| trust_remote_code = True, | |
| quantization_config=quantization_config | |
| ) | |
| gen_config = model.generation_config | |
| gen_config.max_new_tokens = 256 | |
| gen_config.num_return_sequences = 1 | |
| gen_config.pad_token_id = tokenizer.eos_token_id | |
| gen_config.eos_token_id = tokenizer.eos_token_id | |
| self.generation_config = gen_config | |
| self.pipeline = pipeline( | |
| 'text-generation', model=model, tokenizer=tokenizer | |
| ) | |
| def __call__(self, data: Dict[dict, Any]) -> Dict[str, Any]: | |
| prompt = data.pop("inputs", data) | |
| instruction = "Create a list of chords,a corresponding scale to improve with, title, and style along with an example in ABC notation based on this input in JSON format." | |
| full_prompt = f"""<s> | |
| ### Instruction: | |
| {instruction} | |
| ### Input: | |
| {prompt} | |
| ### Response: | |
| """ | |
| result = self.pipeline(full_prompt, generation_config = self.generation_config)[0] | |
| return result |