Instructions to use Pritish92/ner-grit-llama31-8b-lora-best with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Pritish92/ner-grit-llama31-8b-lora-best with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-8B") model = PeftModel.from_pretrained(base_model, "Pritish92/ner-grit-llama31-8b-lora-best") - Transformers
How to use Pritish92/ner-grit-llama31-8b-lora-best with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Pritish92/ner-grit-llama31-8b-lora-best")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Pritish92/ner-grit-llama31-8b-lora-best", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Pritish92/ner-grit-llama31-8b-lora-best with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Pritish92/ner-grit-llama31-8b-lora-best" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Pritish92/ner-grit-llama31-8b-lora-best", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Pritish92/ner-grit-llama31-8b-lora-best
- SGLang
How to use Pritish92/ner-grit-llama31-8b-lora-best 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 "Pritish92/ner-grit-llama31-8b-lora-best" \ --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": "Pritish92/ner-grit-llama31-8b-lora-best", "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 "Pritish92/ner-grit-llama31-8b-lora-best" \ --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": "Pritish92/ner-grit-llama31-8b-lora-best", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Pritish92/ner-grit-llama31-8b-lora-best with Docker Model Runner:
docker model run hf.co/Pritish92/ner-grit-llama31-8b-lora-best
- Xet hash:
- 12e76acb6694d430e6a9c93d7642dcc71963c14360bf7a406f119dd212e2d2cd
- Size of remote file:
- 168 MB
- SHA256:
- 68338e5d33d61972d9bcc0e3f0ed9ba6beb5b732f7877d9bd382b518dc8b0b22
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.