Instructions to use pixelmelt/Incelgpt-24B_v1.1 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 pixelmelt/Incelgpt-24B_v1.1 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 pixelmelt/Incelgpt-24B_v1.1:F16 # Run inference directly in the terminal: llama cli -hf pixelmelt/Incelgpt-24B_v1.1:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf pixelmelt/Incelgpt-24B_v1.1:F16 # Run inference directly in the terminal: llama cli -hf pixelmelt/Incelgpt-24B_v1.1:F16
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 pixelmelt/Incelgpt-24B_v1.1:F16 # Run inference directly in the terminal: ./llama-cli -hf pixelmelt/Incelgpt-24B_v1.1:F16
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 pixelmelt/Incelgpt-24B_v1.1:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf pixelmelt/Incelgpt-24B_v1.1:F16
Use Docker
docker model run hf.co/pixelmelt/Incelgpt-24B_v1.1:F16
- LM Studio
- Jan
- Ollama
How to use pixelmelt/Incelgpt-24B_v1.1 with Ollama:
ollama run hf.co/pixelmelt/Incelgpt-24B_v1.1:F16
- Unsloth Studio
How to use pixelmelt/Incelgpt-24B_v1.1 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 pixelmelt/Incelgpt-24B_v1.1 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 pixelmelt/Incelgpt-24B_v1.1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for pixelmelt/Incelgpt-24B_v1.1 to start chatting
- Docker Model Runner
How to use pixelmelt/Incelgpt-24B_v1.1 with Docker Model Runner:
docker model run hf.co/pixelmelt/Incelgpt-24B_v1.1:F16
- Lemonade
How to use pixelmelt/Incelgpt-24B_v1.1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull pixelmelt/Incelgpt-24B_v1.1:F16
Run and chat with the model
lemonade run user.Incelgpt-24B_v1.1-F16
List all available models
lemonade list
- Atomic Chat
| {% if 'role' in messages[0] %}{{ bos_token }}{% if messages[0]['role'] == 'system' %}{% if messages[1]['role'] == 'user' %}{{ '[INST] ' + messages[0]['content'] + ' ' + messages[1]['content'] + ' [/INST]' }}{% set loop_messages = messages[2:] %}{% else %}{{ '[INST] ' + messages[0]['content'] + ' [/INST]' }}{% set loop_messages = messages[1:] %}{% endif %}{% else %}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}{% else %}{{ bos_token }}{% if messages[0]['from'] == 'system' %}{% if messages[1]['from'] == 'human' %}{{ '[INST] ' + messages[0]['value'] + ' ' + messages[1]['value'] + ' [/INST]' }}{% set loop_messages = messages[2:] %}{% else %}{{ '[INST] ' + messages[0]['value'] + ' [/INST]' }}{% set loop_messages = messages[1:] %}{% endif %}{% else %}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['from'] == 'human' %}{{ '[INST] ' + message['value'] + ' [/INST]' }}{% elif message['from'] == 'gpt' %}{{ message['value'] + eos_token }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}{% endif %} |