Instructions to use t-tech/T-lite-it-1.0-Q8_0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use t-tech/T-lite-it-1.0-Q8_0-GGUF 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 t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
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 t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
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 t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
Use Docker
docker model run hf.co/t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
- LM Studio
- Jan
- Ollama
How to use t-tech/T-lite-it-1.0-Q8_0-GGUF with Ollama:
ollama run hf.co/t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
- Unsloth Desktop
- Docker Model Runner
How to use t-tech/T-lite-it-1.0-Q8_0-GGUF with Docker Model Runner:
docker model run hf.co/t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
- Lemonade
How to use t-tech/T-lite-it-1.0-Q8_0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0
Run and chat with the model
lemonade run user.T-lite-it-1.0-Q8_0-GGUF-Q8_0
List all available models
lemonade list
- Atomic Chat
T-lite-it-1.0-Q8_0-GGUF
🚨 T-lite is designed for further fine-tuning and is not intended as a ready-to-use conversational assistant. Users are advised to exercise caution and are responsible for any additional training and oversight required to ensure the model's responses meet acceptable ethical and safety standards. The responsibility for incorporating this model into industrial or commercial solutions lies entirely with those who choose to deploy it.
Description
This repository contains the T-lite-it-1.0 model, which has been quantized into the GGUF format using the llama.cpp repository.
📊 Benchmarks
Detailed evaluation results of oringal model can be found in our habr post.
| Benchmark | T-lite-it-1.0 | T-lite-it-1.0-Q8_0 |
|---|---|---|
| Arena-Hard-Ru | 64.38 (-2.1, 2.5) | 64.21 (-2.2, 2.7) |
Llama.cpp usage
Server
From HF:
llama-server --hf-repo t-tech/T-lite-it-1.0-Q8_0-GGUF --hf-file t-lite-it-1.0-q8_0.gguf -c 8192
Or locally:
./build/bin/llama-server -m t-lite-it-1.0-q8_0.gguf -c 8192
POST
curl --request POST \
--url http://localhost:8080/completion \
--header "Content-Type: application/json" \
--data '{
"prompt": "<|im_start|>user\nРасскажи мне чем отличается Python от C++?\n<|im_end|>\n<|im_start|>assistant\n",
"n_predict": 256
}'
ollama usage
Serve
ollama serve
Run
From HF:
ollama run hf.co/t-tech/T-lite-it-1.0-Q8_0-GGUF:Q8_0 "Расскажи мне про отличия C++ и Python"
Or locally:
ollama create example -f Modelfile
ollama run example "Расскажи мне про отличия C++ и Python"
where Modelfile is
FROM ./t-lite-it-1.0-q8_0.gguf
- Downloads last month
- 68
8-bit
Model tree for t-tech/T-lite-it-1.0-Q8_0-GGUF
Base model
t-tech/T-lite-it-1.0