Instructions to use ProfEngel/OwlLM2-e2b 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 ProfEngel/OwlLM2-e2b 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 ProfEngel/OwlLM2-e2b:Q8_0 # Run inference directly in the terminal: llama cli -hf ProfEngel/OwlLM2-e2b:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ProfEngel/OwlLM2-e2b:Q8_0 # Run inference directly in the terminal: llama cli -hf ProfEngel/OwlLM2-e2b: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 ProfEngel/OwlLM2-e2b:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf ProfEngel/OwlLM2-e2b: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 ProfEngel/OwlLM2-e2b:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ProfEngel/OwlLM2-e2b:Q8_0
Use Docker
docker model run hf.co/ProfEngel/OwlLM2-e2b:Q8_0
- LM Studio
- Jan
- Ollama
How to use ProfEngel/OwlLM2-e2b with Ollama:
ollama run hf.co/ProfEngel/OwlLM2-e2b:Q8_0
- Unsloth Desktop
- Docker Model Runner
How to use ProfEngel/OwlLM2-e2b with Docker Model Runner:
docker model run hf.co/ProfEngel/OwlLM2-e2b:Q8_0
- Lemonade
How to use ProfEngel/OwlLM2-e2b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ProfEngel/OwlLM2-e2b:Q8_0
Run and chat with the model
lemonade run user.OwlLM2-e2b-Q8_0
List all available models
lemonade list
- Atomic Chat
File size: 777 Bytes
bd919ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | {
"audio_token": "<audio_soft_token>",
"boa_token": "<start_of_audio>",
"boi_token": "<start_of_image>",
"bos_token": {
"content": "<bos>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"eoa_token": "<end_of_audio>",
"eoi_token": "<end_of_image>",
"eos_token": {
"content": "<end_of_turn>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"image_token": "<image_soft_token>",
"pad_token": {
"content": "<pad>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"unk_token": {
"content": "<unk>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
}
}
|