Summarization
Transformers.js
ONNX
Safetensors
GGUF
English
t5
text2text-generation
title-generation
distillation
tiny-model
edge
Instructions to use Cyronius/titler with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use Cyronius/titler with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('summarization', 'Cyronius/titler'); - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Cyronius/titler with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Cyronius/titler:F16 # Run inference directly in the terminal: llama cli -hf Cyronius/titler:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Cyronius/titler:F16 # Run inference directly in the terminal: llama cli -hf Cyronius/titler:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Cyronius/titler:F16 # Run inference directly in the terminal: ./llama-cli -hf Cyronius/titler:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Cyronius/titler:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Cyronius/titler:F16
Use Docker
docker model run hf.co/Cyronius/titler:F16
- LM Studio
- Jan
- Ollama
How to use Cyronius/titler with Ollama:
ollama run hf.co/Cyronius/titler:F16
- Unsloth Desktop
- Docker Model Runner
How to use Cyronius/titler with Docker Model Runner:
docker model run hf.co/Cyronius/titler:F16
- Lemonade
How to use Cyronius/titler with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Cyronius/titler:F16
Run and chat with the model
lemonade run user.titler-F16
List all available models
lemonade list
- Atomic Chat
v1.5: LMSYS-Chat-1M data expansion, collapse fix, quant benchmark
Browse files- special_tokens_map.json +23 -0
special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"eos_token": {
|
| 3 |
+
"content": "</s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"pad_token": {
|
| 10 |
+
"content": "<pad>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"unk_token": {
|
| 17 |
+
"content": "<unk>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|