Instructions to use appvoid/void.0 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 appvoid/void.0 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 appvoid/void.0 # Run inference directly in the terminal: llama cli -hf appvoid/void.0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf appvoid/void.0 # Run inference directly in the terminal: llama cli -hf appvoid/void.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 appvoid/void.0 # Run inference directly in the terminal: ./llama-cli -hf appvoid/void.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 appvoid/void.0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf appvoid/void.0
Use Docker
docker model run hf.co/appvoid/void.0
- LM Studio
- Jan
- Ollama
How to use appvoid/void.0 with Ollama:
ollama run hf.co/appvoid/void.0
- Unsloth Studio
How to use appvoid/void.0 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 appvoid/void.0 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 appvoid/void.0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for appvoid/void.0 to start chatting
- Docker Model Runner
How to use appvoid/void.0 with Docker Model Runner:
docker model run hf.co/appvoid/void.0
- Lemonade
How to use appvoid/void.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull appvoid/void.0
Run and chat with the model
lemonade run user.void.0-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Continued pretraining: FineWeb-Edu + rewrite6 byte hybrid + no-prompt-15k
Browse files- tokenizer.json +0 -0
- tokenizer_config.json +21 -0
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"boi_token": "<start_of_image>",
|
| 4 |
+
"bos_token": "<bos>",
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eoi_token": "<end_of_image>",
|
| 7 |
+
"eos_token": "<eos>",
|
| 8 |
+
"is_local": false,
|
| 9 |
+
"local_files_only": false,
|
| 10 |
+
"mask_token": "<mask>",
|
| 11 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 12 |
+
"model_specific_special_tokens": {
|
| 13 |
+
"boi_token": "<start_of_image>",
|
| 14 |
+
"eoi_token": "<end_of_image>"
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "<pad>",
|
| 17 |
+
"padding_side": "left",
|
| 18 |
+
"tokenizer_class": "GemmaTokenizer",
|
| 19 |
+
"truncation_side": "right",
|
| 20 |
+
"unk_token": "<unk>"
|
| 21 |
+
}
|