Instructions to use worknick/opt-125m-tldr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use worknick/opt-125m-tldr with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="worknick/opt-125m-tldr")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("worknick/opt-125m-tldr") model = AutoModelForCausalLM.from_pretrained("worknick/opt-125m-tldr") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use worknick/opt-125m-tldr with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "worknick/opt-125m-tldr" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "worknick/opt-125m-tldr", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/worknick/opt-125m-tldr
- SGLang
How to use worknick/opt-125m-tldr 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 "worknick/opt-125m-tldr" \ --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": "worknick/opt-125m-tldr", "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 "worknick/opt-125m-tldr" \ --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": "worknick/opt-125m-tldr", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use worknick/opt-125m-tldr with Docker Model Runner:
docker model run hf.co/worknick/opt-125m-tldr
Update README.md
#2
by cherry0328 - opened
README.md
CHANGED
|
@@ -5,6 +5,8 @@ tags:
|
|
| 5 |
model-index:
|
| 6 |
- name: opt-125m-tldr
|
| 7 |
results: []
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
@@ -66,4 +68,4 @@ The following hyperparameters were used during training:
|
|
| 66 |
- Transformers 4.27.4
|
| 67 |
- Pytorch 2.0.0+cu117
|
| 68 |
- Datasets 2.11.0
|
| 69 |
-
- Tokenizers 0.13.2
|
|
|
|
| 5 |
model-index:
|
| 6 |
- name: opt-125m-tldr
|
| 7 |
results: []
|
| 8 |
+
base_model:
|
| 9 |
+
- facebook/opt-125m
|
| 10 |
---
|
| 11 |
|
| 12 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 68 |
- Transformers 4.27.4
|
| 69 |
- Pytorch 2.0.0+cu117
|
| 70 |
- Datasets 2.11.0
|
| 71 |
+
- Tokenizers 0.13.2
|