Text Generation
Transformers
PyTorch
t5
text2text-generation
endpoints-template
text-generation-inference
Instructions to use philschmid/t5-11b-sharded with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use philschmid/t5-11b-sharded with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="philschmid/t5-11b-sharded")# Load model directly from transformers import AutoTokenizer, AutoModelWithLMHead tokenizer = AutoTokenizer.from_pretrained("philschmid/t5-11b-sharded") model = AutoModelWithLMHead.from_pretrained("philschmid/t5-11b-sharded") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use philschmid/t5-11b-sharded with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "philschmid/t5-11b-sharded" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "philschmid/t5-11b-sharded", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/philschmid/t5-11b-sharded
- SGLang
How to use philschmid/t5-11b-sharded 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 "philschmid/t5-11b-sharded" \ --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": "philschmid/t5-11b-sharded", "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 "philschmid/t5-11b-sharded" \ --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": "philschmid/t5-11b-sharded", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use philschmid/t5-11b-sharded with Docker Model Runner:
docker model run hf.co/philschmid/t5-11b-sharded
Commit ·
a51dfcf
1
Parent(s): 0494582
Upload config.json
Browse files- config.json +51 -0
config.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"T5WithLMHeadModel"
|
| 4 |
+
],
|
| 5 |
+
"d_ff": 65536,
|
| 6 |
+
"d_kv": 128,
|
| 7 |
+
"d_model": 1024,
|
| 8 |
+
"decoder_start_token_id": 0,
|
| 9 |
+
"dropout_rate": 0.1,
|
| 10 |
+
"eos_token_id": 1,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"is_encoder_decoder": true,
|
| 13 |
+
"layer_norm_epsilon": 1e-06,
|
| 14 |
+
"model_type": "t5",
|
| 15 |
+
"n_positions": 512,
|
| 16 |
+
"num_heads": 128,
|
| 17 |
+
"num_layers": 24,
|
| 18 |
+
"output_past": true,
|
| 19 |
+
"pad_token_id": 0,
|
| 20 |
+
"relative_attention_num_buckets": 32,
|
| 21 |
+
"task_specific_params": {
|
| 22 |
+
"summarization": {
|
| 23 |
+
"early_stopping": true,
|
| 24 |
+
"length_penalty": 2.0,
|
| 25 |
+
"max_length": 200,
|
| 26 |
+
"min_length": 30,
|
| 27 |
+
"no_repeat_ngram_size": 3,
|
| 28 |
+
"num_beams": 4,
|
| 29 |
+
"prefix": "summarize: "
|
| 30 |
+
},
|
| 31 |
+
"translation_en_to_de": {
|
| 32 |
+
"early_stopping": true,
|
| 33 |
+
"max_length": 300,
|
| 34 |
+
"num_beams": 4,
|
| 35 |
+
"prefix": "translate English to German: "
|
| 36 |
+
},
|
| 37 |
+
"translation_en_to_fr": {
|
| 38 |
+
"early_stopping": true,
|
| 39 |
+
"max_length": 300,
|
| 40 |
+
"num_beams": 4,
|
| 41 |
+
"prefix": "translate English to French: "
|
| 42 |
+
},
|
| 43 |
+
"translation_en_to_ro": {
|
| 44 |
+
"early_stopping": true,
|
| 45 |
+
"max_length": 300,
|
| 46 |
+
"num_beams": 4,
|
| 47 |
+
"prefix": "translate English to Romanian: "
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
"vocab_size": 32128
|
| 51 |
+
}
|