Text Generation
Safetensors
GGUF
English
reasoning
reinforcement-learning
grpo
small-language-model
samsung-ennovatex
conversational
Instructions to use OmnipotentFool/Aurvion 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 OmnipotentFool/Aurvion 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 OmnipotentFool/Aurvion:Q4_K_M # Run inference directly in the terminal: llama cli -hf OmnipotentFool/Aurvion:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf OmnipotentFool/Aurvion:Q4_K_M # Run inference directly in the terminal: llama cli -hf OmnipotentFool/Aurvion:Q4_K_M
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 OmnipotentFool/Aurvion:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf OmnipotentFool/Aurvion:Q4_K_M
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 OmnipotentFool/Aurvion:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf OmnipotentFool/Aurvion:Q4_K_M
Use Docker
docker model run hf.co/OmnipotentFool/Aurvion:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use OmnipotentFool/Aurvion with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OmnipotentFool/Aurvion" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OmnipotentFool/Aurvion", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OmnipotentFool/Aurvion:Q4_K_M
- Ollama
How to use OmnipotentFool/Aurvion with Ollama:
ollama run hf.co/OmnipotentFool/Aurvion:Q4_K_M
- Unsloth Studio
How to use OmnipotentFool/Aurvion with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for OmnipotentFool/Aurvion to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for OmnipotentFool/Aurvion to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for OmnipotentFool/Aurvion to start chatting
- Docker Model Runner
How to use OmnipotentFool/Aurvion with Docker Model Runner:
docker model run hf.co/OmnipotentFool/Aurvion:Q4_K_M
- Lemonade
How to use OmnipotentFool/Aurvion with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull OmnipotentFool/Aurvion:Q4_K_M
Run and chat with the model
lemonade run user.Aurvion-Q4_K_M
List all available models
lemonade list
- Atomic Chat
| ggml_cgraph * clip_graph_internvl::build() { | |
| GGML_ASSERT(model.class_embedding != nullptr); | |
| GGML_ASSERT(model.position_embeddings != nullptr); | |
| const int n_pos = n_patches + 1; | |
| ggml_tensor * inp = build_inp(); | |
| // add CLS token | |
| ggml_tensor * cls_repeated = ggml_repeat_4d(ctx0, model.class_embedding, | |
| model.class_embedding->ne[0], 1, n_batch, 1); | |
| inp = ggml_concat(ctx0, inp, cls_repeated, 1); | |
| // The larger models use a different ViT, which uses RMS norm instead of layer norm | |
| // ref: https://github.com/ggml-org/llama.cpp/pull/13443#issuecomment-2869786188 | |
| norm_type norm_t = (hparams.n_embd == 3200 && hparams.n_layer == 45) | |
| ? NORM_TYPE_RMS // 6B ViT (Used by InternVL 2.5/3 - 26B, 38B, 78B) | |
| : NORM_TYPE_NORMAL; // 300M ViT (Used by all smaller InternVL models) | |
| ggml_tensor * cur = build_vit( | |
| inp, n_pos, | |
| norm_t, | |
| hparams.ffn_op, | |
| model.position_embeddings, | |
| nullptr); | |
| // remove CLS token | |
| cur = ggml_view_3d(ctx0, cur, | |
| n_embd, n_patches, n_batch, | |
| cur->nb[1], cur->nb[2], 0); | |
| cur = ggml_cont(ctx0, cur); | |
| // pixel shuffle | |
| { | |
| const int scale_factor = model.hparams.n_merge; | |
| const int bsz = n_batch; | |
| const int height = n_patches_y; | |
| const int width = n_patches_x; | |
| GGML_ASSERT(scale_factor > 0); | |
| cur = ggml_reshape_4d(ctx0, cur, n_embd * scale_factor, height / scale_factor, width, bsz); | |
| cur = ggml_permute(ctx0, cur, 0, 2, 1, 3); | |
| cur = ggml_cont_4d(ctx0, cur, | |
| n_embd * scale_factor * scale_factor, | |
| height / scale_factor, | |
| width / scale_factor, | |
| bsz); | |
| cur = ggml_permute(ctx0, cur, 0, 2, 1, 3); | |
| // flatten to 2D | |
| cur = ggml_cont_3d(ctx0, cur, | |
| n_embd * scale_factor * scale_factor, | |
| cur->ne[1] * cur->ne[2], | |
| cur->ne[3]); | |
| } | |
| // projector (always using GELU activation) | |
| { | |
| // projector LayerNorm uses pytorch's default eps = 1e-5 | |
| // ref: https://huggingface.co/OpenGVLab/InternVL3-8B-Instruct/blob/a34d3e4e129a5856abfd6aa6de79776484caa14e/modeling_internvl_chat.py#L79 | |
| cur = build_norm(cur, model.mm_0_w, model.mm_0_b, NORM_TYPE_NORMAL, 1e-5, -1); | |
| cur = build_ffn(cur, | |
| model.mm_1_w, model.mm_1_b, | |
| nullptr, nullptr, | |
| model.mm_3_w, model.mm_3_b, | |
| FFN_GELU, | |
| -1); | |
| } | |
| // build the graph | |
| ggml_build_forward_expand(gf, cur); | |
| return gf; | |
| } | |