Instructions to use EBLANSoft/eblangpt-2 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 EBLANSoft/eblangpt-2 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 EBLANSoft/eblangpt-2 # Run inference directly in the terminal: llama cli -hf EBLANSoft/eblangpt-2
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf EBLANSoft/eblangpt-2 # Run inference directly in the terminal: llama cli -hf EBLANSoft/eblangpt-2
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 EBLANSoft/eblangpt-2 # Run inference directly in the terminal: ./llama-cli -hf EBLANSoft/eblangpt-2
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 EBLANSoft/eblangpt-2 # Run inference directly in the terminal: ./build/bin/llama-cli -hf EBLANSoft/eblangpt-2
Use Docker
docker model run hf.co/EBLANSoft/eblangpt-2
- LM Studio
- Jan
- vLLM
How to use EBLANSoft/eblangpt-2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "EBLANSoft/eblangpt-2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EBLANSoft/eblangpt-2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/EBLANSoft/eblangpt-2
- Ollama
How to use EBLANSoft/eblangpt-2 with Ollama:
ollama run hf.co/EBLANSoft/eblangpt-2
- Unsloth Desktop
- Docker Model Runner
How to use EBLANSoft/eblangpt-2 with Docker Model Runner:
docker model run hf.co/EBLANSoft/eblangpt-2
- Lemonade
How to use EBLANSoft/eblangpt-2 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull EBLANSoft/eblangpt-2
Run and chat with the model
lemonade run user.eblangpt-2-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,15 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
-
|
| 5 |
tags:
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
library_name: gguf
|
| 14 |
---
|
|
@@ -87,4 +88,4 @@ python tiny_llama.py train свой_текст.txt model.gguf 2000
|
|
| 87 |
|
| 88 |
## Лицензия
|
| 89 |
|
| 90 |
-
Apache 2.0 — делай что хочешь.
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
+
- ru
|
| 5 |
tags:
|
| 6 |
+
- llama
|
| 7 |
+
- gguf
|
| 8 |
+
- russian
|
| 9 |
+
- tiny
|
| 10 |
+
- char-level
|
| 11 |
+
- byte-level
|
| 12 |
+
- eblangpt
|
| 13 |
pipeline_tag: text-generation
|
| 14 |
library_name: gguf
|
| 15 |
---
|
|
|
|
| 88 |
|
| 89 |
## Лицензия
|
| 90 |
|
| 91 |
+
Apache 2.0 — делай что хочешь.
|