Instructions to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf", filename="ggml-model-I1_V.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf # Run inference directly in the terminal: llama-cli -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf # Run inference directly in the terminal: llama-cli -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
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 XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf # Run inference directly in the terminal: ./llama-cli -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
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 XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
Use Docker
docker model run hf.co/XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
- LM Studio
- Jan
- vLLM
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
- Ollama
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with Ollama:
ollama run hf.co/XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
- Unsloth Studio new
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf 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 XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf 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 XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf to start chatting
- Pi new
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
Run Hermes
hermes
- Docker Model Runner
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with Docker Model Runner:
docker model run hf.co/XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
- Lemonade
How to use XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull XXXXyu/Falcon3-1B-Instruct-1.58bit-vlut-gguf
Run and chat with the model
lemonade run user.Falcon3-1B-Instruct-1.58bit-vlut-gguf-{{QUANT_TAG}}List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +5 -0
- ggml-model-I1_V.gguf +3 -0
- ggml-model-I1_V_2.gguf +3 -0
- ggml-model-I2_V.gguf +3 -0
- ggml-model-I2_V_4.gguf +3 -0
- ggml-model-I2_V_8.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
ggml-model-I1_V.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ggml-model-I1_V_2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ggml-model-I2_V.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ggml-model-I2_V_4.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ggml-model-I2_V_8.gguf filter=lfs diff=lfs merge=lfs -text
|
ggml-model-I1_V.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa8543587bfc34db9386985930fff24ceebf7fa4b75c9af4e9754aa63cccca7f
|
| 3 |
+
size 602927488
|
ggml-model-I1_V_2.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b944c36f979228008265c5c024dbf75df60f786efbdc0b90f27f8892731b9f18
|
| 3 |
+
size 602927488
|
ggml-model-I2_V.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb2345e01c010dc1f70caaa75da7f4fc5a11c0c89a40d739d90914e6c3def9f
|
| 3 |
+
size 659366272
|
ggml-model-I2_V_4.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6eb67473189b8b6d1a02cdc723b2f284b0e247eba27619c46117fd2d592c6b94
|
| 3 |
+
size 659366272
|
ggml-model-I2_V_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7f9e456024ba77db083ea7b5c35daec163d12e2e33a33f72f33f7a633bef808
|
| 3 |
+
size 659366272
|