Any-to-Any
Transformers
Safetensors
GGUF
gemma4
multimodal
text-generation
image-text-to-text
audio-text-to-text
video-text-to-text
long-context
lora
bf16
llama-cpp
zh
en
Instructions to use chirs345678/Anrn-12B-R1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use chirs345678/Anrn-12B-R1 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("chirs345678/Anrn-12B-R1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 431 Bytes
dbb8e24 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | @echo off
setlocal
chcp 65001 >nul
title Anru Llama Service Bootstrap
echo [Anru] Checking llama.cpp runtime, model files, and port...
powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%~dp0llama-bootstrap.ps1" -Port 8091 -Context 131072
if errorlevel 1 (
echo.
echo [Anru] Startup failed. Read the message above.
pause
exit /b 1
)
echo [Anru] llama-server is ready and the Web UI has been opened.
exit /b 0
|