yahma/alpaca-cleaned
Viewer • Updated • 51.8k • 26.1k • 847
How to use ffurfaro/Titans-OpenELM-1_1B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="ffurfaro/Titans-OpenELM-1_1B") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("ffurfaro/Titans-OpenELM-1_1B", dtype="auto")How to use ffurfaro/Titans-OpenELM-1_1B with PEFT:
Task type is invalid.
How to use ffurfaro/Titans-OpenELM-1_1B with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "ffurfaro/Titans-OpenELM-1_1B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "ffurfaro/Titans-OpenELM-1_1B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/ffurfaro/Titans-OpenELM-1_1B
How to use ffurfaro/Titans-OpenELM-1_1B with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "ffurfaro/Titans-OpenELM-1_1B" \
--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": "ffurfaro/Titans-OpenELM-1_1B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "ffurfaro/Titans-OpenELM-1_1B" \
--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": "ffurfaro/Titans-OpenELM-1_1B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use ffurfaro/Titans-OpenELM-1_1B with Docker Model Runner:
docker model run hf.co/ffurfaro/Titans-OpenELM-1_1B
Titanesque version of apple/OpenELM-1_1B with parallel linearized attention (TPTT 😊) and PEFT.
The architecture was presented in the paper TPTT.
Classic model parameter with LiZA injection :
| Subfolder | Max Self Attn Length | Mag Weight | Cross Gate | Max Chunk Size | Bidirectional | LoRA | Description |
|---|---|---|---|---|---|---|---|
| delta_rule | 8192 (default) | 0.5 | False | 64 | False | Yes | Parallel linearized attention with delta_rule operator |
| delta_rule_gelu | 8192 (default) | 0.5 | False | 64 | False | Yes | Non-linear operator with gelu activation |
| delta_product | 8192 (default) | 0.5 | False | 64 | False | Yes | Second order operator with derivative trick |
| delta_product_r | 8192 (default) | 0.5 | False | 64 | False | Yes | Second order operator with rotative trick |
| delta_product_c | 8192 (default) | 0.5 | False | 64 | False | Yes | Second order operator with combined trick |
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"ffurfaro/Titanesque-OpenELM-1_1B",
subfolder="tptt_subfolder", # see in repo tree
trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained("ffurfaro/apple/OpenELM-1_1B")
prompt = "Your prompt here"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs, skip_special_tokens=True))
If you use TPTT in your academic work, please cite Furfaro. For questions or support, please open an issue on the GitHub repository or contact the maintainer.
Base model
apple/OpenELM-1_1B