Text Generation
Transformers
PyTorch
Safetensors
English
t5
text2text-generation
Generated from Trainer
text-generation-inference
Instructions to use kargaranamir/T5R-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kargaranamir/T5R-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="kargaranamir/T5R-base")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("kargaranamir/T5R-base") model = AutoModelForSeq2SeqLM.from_pretrained("kargaranamir/T5R-base") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use kargaranamir/T5R-base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kargaranamir/T5R-base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kargaranamir/T5R-base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/kargaranamir/T5R-base
- SGLang
How to use kargaranamir/T5R-base 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 "kargaranamir/T5R-base" \ --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": "kargaranamir/T5R-base", "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 "kargaranamir/T5R-base" \ --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": "kargaranamir/T5R-base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use kargaranamir/T5R-base with Docker Model Runner:
docker model run hf.co/kargaranamir/T5R-base
Commit ·
f10f95e
1
Parent(s): dc68044
add example of readme
Browse files
README.md
CHANGED
|
@@ -27,6 +27,33 @@ widget:
|
|
| 27 |
|
| 28 |
# T5-Reverse (T5R)
|
| 29 |
|
| 30 |
-
This model can generate prompts (
|
| 31 |
|
| 32 |
This model is an instruction-tuned version of [google/flan-t5-base](https://huggingface.co/google/flan-t5-base) on [alpaca dataset](https://huggingface.co/datasets/tatsu-lab/alpaca) but in **reverse format**!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
# T5-Reverse (T5R)
|
| 29 |
|
| 30 |
+
This model can generate prompts (instructions) for any text!
|
| 31 |
|
| 32 |
This model is an instruction-tuned version of [google/flan-t5-base](https://huggingface.co/google/flan-t5-base) on [alpaca dataset](https://huggingface.co/datasets/tatsu-lab/alpaca) but in **reverse format**!
|
| 33 |
+
|
| 34 |
+
## How to Use the Model
|
| 35 |
+
|
| 36 |
+
You can use the `transformers` library to load and utilize the T5-Reverse (T5R) model for generating prompts based on text. Here's an example of how to do it:
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
# Import required libraries
|
| 40 |
+
import torch
|
| 41 |
+
from transformers import pipeline
|
| 42 |
+
|
| 43 |
+
# Load the model and tokenizer using the pipeline from Hugging Face Hub
|
| 44 |
+
inference = pipeline("text2text-generation", model="kargaranamir/T5R-base")
|
| 45 |
+
|
| 46 |
+
# Example instruction and prompt
|
| 47 |
+
sample = '''
|
| 48 |
+
Instruction: X
|
| 49 |
+
Output: 1- Base your meals on higher fibre starchy carbohydrates. 2- Eat lots of fruit and veg. 3- Eat more fish, including a portion of oily fish.
|
| 50 |
+
What kind of instruction could this be the answer to?
|
| 51 |
+
X:
|
| 52 |
+
'''
|
| 53 |
+
|
| 54 |
+
# Generate a response using the model
|
| 55 |
+
res = inference(sample)
|
| 56 |
+
|
| 57 |
+
# Print the generated response
|
| 58 |
+
print(res)
|
| 59 |
+
>> [{'generated_text': 'Instruction: Generate three recommendations for a healthy diet.'}]
|