Instructions to use facebook/opt-125m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/opt-125m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="facebook/opt-125m")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("facebook/opt-125m") model = AutoModelForCausalLM.from_pretrained("facebook/opt-125m") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use facebook/opt-125m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "facebook/opt-125m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "facebook/opt-125m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/facebook/opt-125m
- SGLang
How to use facebook/opt-125m 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 "facebook/opt-125m" \ --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": "facebook/opt-125m", "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 "facebook/opt-125m" \ --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": "facebook/opt-125m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use facebook/opt-125m with Docker Model Runner:
docker model run hf.co/facebook/opt-125m
add model
Browse files- config.json +5 -5
- flax_model.msgpack +3 -0
config.json
CHANGED
|
@@ -2,15 +2,15 @@
|
|
| 2 |
"activation_dropout": 0.0,
|
| 3 |
"activation_function": "relu",
|
| 4 |
"architectures": [
|
| 5 |
-
"
|
| 6 |
],
|
| 7 |
"attention_dropout": 0.0,
|
| 8 |
"bos_token_id": 0,
|
| 9 |
-
"hidden_size": 768,
|
| 10 |
"do_layer_norm_before": true,
|
| 11 |
"dropout": 0.1,
|
| 12 |
"eos_token_id": 2,
|
| 13 |
"ffn_dim": 3072,
|
|
|
|
| 14 |
"init_std": 0.02,
|
| 15 |
"layerdrop": 0.0,
|
| 16 |
"max_position_embeddings": 2048,
|
|
@@ -18,10 +18,10 @@
|
|
| 18 |
"num_attention_heads": 12,
|
| 19 |
"num_hidden_layers": 12,
|
| 20 |
"pad_token_id": 1,
|
|
|
|
| 21 |
"torch_dtype": "float16",
|
| 22 |
-
"transformers_version": "4.
|
| 23 |
"use_cache": true,
|
| 24 |
"vocab_size": 50272,
|
| 25 |
-
"word_embed_proj_dim": 768
|
| 26 |
-
"prefix": "</s>"
|
| 27 |
}
|
|
|
|
| 2 |
"activation_dropout": 0.0,
|
| 3 |
"activation_function": "relu",
|
| 4 |
"architectures": [
|
| 5 |
+
"OPTModel"
|
| 6 |
],
|
| 7 |
"attention_dropout": 0.0,
|
| 8 |
"bos_token_id": 0,
|
|
|
|
| 9 |
"do_layer_norm_before": true,
|
| 10 |
"dropout": 0.1,
|
| 11 |
"eos_token_id": 2,
|
| 12 |
"ffn_dim": 3072,
|
| 13 |
+
"hidden_size": 768,
|
| 14 |
"init_std": 0.02,
|
| 15 |
"layerdrop": 0.0,
|
| 16 |
"max_position_embeddings": 2048,
|
|
|
|
| 18 |
"num_attention_heads": 12,
|
| 19 |
"num_hidden_layers": 12,
|
| 20 |
"pad_token_id": 1,
|
| 21 |
+
"prefix": "</s>",
|
| 22 |
"torch_dtype": "float16",
|
| 23 |
+
"transformers_version": "4.20.0.dev0",
|
| 24 |
"use_cache": true,
|
| 25 |
"vocab_size": 50272,
|
| 26 |
+
"word_embed_proj_dim": 768
|
|
|
|
| 27 |
}
|
flax_model.msgpack
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c1104517f9e8da19880443914c49290a108483337d1256f7f274b361e3a26f5
|
| 3 |
+
size 250482293
|