Instructions to use mradermacher/A2Search-3B-Instruct-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/A2Search-3B-Instruct-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/A2Search-3B-Instruct-i1-GGUF", filename="A2Search-3B-Instruct.i1-IQ1_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/A2Search-3B-Instruct-i1-GGUF: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 mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/A2Search-3B-Instruct-i1-GGUF: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 mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/A2Search-3B-Instruct-i1-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 mradermacher/A2Search-3B-Instruct-i1-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 mradermacher/A2Search-3B-Instruct-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/A2Search-3B-Instruct-i1-GGUF to start chatting
- Pi
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
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": "mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/A2Search-3B-Instruct-i1-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 mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
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 mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/A2Search-3B-Instruct-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/A2Search-3B-Instruct-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.A2Search-3B-Instruct-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from marco
Browse files- .gitattributes +24 -0
- A2Search-3B-Instruct.i1-IQ1_M.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ1_S.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ2_M.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ2_S.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ2_XS.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ2_XXS.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ3_M.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ3_S.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ3_XS.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ3_XXS.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ4_NL.gguf +3 -0
- A2Search-3B-Instruct.i1-IQ4_XS.gguf +3 -0
- A2Search-3B-Instruct.i1-Q2_K.gguf +3 -0
- A2Search-3B-Instruct.i1-Q2_K_S.gguf +3 -0
- A2Search-3B-Instruct.i1-Q3_K_L.gguf +3 -0
- A2Search-3B-Instruct.i1-Q3_K_M.gguf +3 -0
- A2Search-3B-Instruct.i1-Q3_K_S.gguf +3 -0
- A2Search-3B-Instruct.i1-Q4_0.gguf +3 -0
- A2Search-3B-Instruct.i1-Q4_1.gguf +3 -0
- A2Search-3B-Instruct.i1-Q4_K_M.gguf +3 -0
- A2Search-3B-Instruct.i1-Q4_K_S.gguf +3 -0
- A2Search-3B-Instruct.i1-Q5_K_M.gguf +3 -0
- A2Search-3B-Instruct.i1-Q5_K_S.gguf +3 -0
- A2Search-3B-Instruct.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* 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 |
A2Search-3B-Instruct.imatrix.gguf 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 |
A2Search-3B-Instruct.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
A2Search-3B-Instruct.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
A2Search-3B-Instruct.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
A2Search-3B-Instruct.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
A2Search-3B-Instruct.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
A2Search-3B-Instruct.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
A2Search-3B-Instruct.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
A2Search-3B-Instruct.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
A2Search-3B-Instruct.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
A2Search-3B-Instruct.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
A2Search-3B-Instruct.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
A2Search-3B-Instruct.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
A2Search-3B-Instruct.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
A2Search-3B-Instruct.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
A2Search-3B-Instruct.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
A2Search-3B-Instruct.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
A2Search-3B-Instruct.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
A2Search-3B-Instruct.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
A2Search-3B-Instruct.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
A2Search-3B-Instruct.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
A2Search-3B-Instruct.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
A2Search-3B-Instruct.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
A2Search-3B-Instruct.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
A2Search-3B-Instruct.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
A2Search-3B-Instruct.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
A2Search-3B-Instruct.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b46bbdbd7db8bc3c941fc60b22fcbd83238d4a55c9f6a4a4ad08010881a2fafe
|
| 3 |
+
size 952129344
|
A2Search-3B-Instruct.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2c1a36a3bb7d769678268a6b5df2d45d7c052bfa869491fd06bfebbb34edc6d
|
| 3 |
+
size 893196096
|
A2Search-3B-Instruct.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d1426ff297976479dd9cd163b5567cf393226f39a7fcf95773df4e26bebf556
|
| 3 |
+
size 1274220352
|
A2Search-3B-Instruct.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfcf1ead8ac859f70dc8db0979a0ed10e93a991afc7d17254c2510af8bc22907
|
| 3 |
+
size 1195642688
|
A2Search-3B-Instruct.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90493dec78c44a8649bcd2721ed521f3a990dea200d3cea316f55d171a5379a9
|
| 3 |
+
size 1133647680
|
A2Search-3B-Instruct.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8e72e3dafb8a2a2f764ba41482b358067aac1fd63bf18866ea81e97b453b5bb
|
| 3 |
+
size 1050351424
|
A2Search-3B-Instruct.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c03f6fad7972f2510358e37e05058fb421738eb301e42f7a91176cdf30011c1
|
| 3 |
+
size 1622599488
|
A2Search-3B-Instruct.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07c15b56a26c4165e8ac3c19fb7ee9e8abee2f134eb906358a75ccbf4b97376c
|
| 3 |
+
size 1590568768
|
A2Search-3B-Instruct.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11ce9032cb67a1957939ca54d5e15df96f00504282d3a7f113dc8fa5bc8e4164
|
| 3 |
+
size 1525540672
|
A2Search-3B-Instruct.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8259b65af5cf0e93bace691585415d0cad5cb670c45f550418c5122945abd4ea
|
| 3 |
+
size 1416531776
|
A2Search-3B-Instruct.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:579b558119b7a882fdb26e70e4014f75524b0bb3af780a000e5a76468fd58e00
|
| 3 |
+
size 2000240448
|
A2Search-3B-Instruct.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ceadf6104edf4659bb3ad18f35326bd7c71c98355d43a8c0479693dd39579ab
|
| 3 |
+
size 1904402240
|
A2Search-3B-Instruct.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a46f6224e974176bcce5783b07b4ac32ace0beccc660ede13897091acc1c36e
|
| 3 |
+
size 1376857920
|
A2Search-3B-Instruct.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb899ea20df6cac7b7fd3f5c76c74ab91413b0061ced475319734592f6c04762
|
| 3 |
+
size 1300229952
|
A2Search-3B-Instruct.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4d871d32fcba7e90121cef5b117d6f9b1707f45a7f2bd15e666c384400aa42e
|
| 3 |
+
size 1841096512
|
A2Search-3B-Instruct.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c545e0ab494c954f19b2f13a9b692cb138ef5167b90e231da65f3c5eaf3a0f1c
|
| 3 |
+
size 1724180288
|
A2Search-3B-Instruct.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e239fe3fc0554fc8d286ee9d50b1e928423cca81442cabebd5ef8010389ae708
|
| 3 |
+
size 1588062016
|
A2Search-3B-Instruct.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ca81cf39256b16a4d3e11c123eb850382edb3935eee341aec5ca4372a4c9895
|
| 3 |
+
size 2003517248
|
A2Search-3B-Instruct.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0cdfab5b2af9c44dcc05879b390c67fde17bc8e4264465726d98f7d4350a2dc
|
| 3 |
+
size 2190737216
|
A2Search-3B-Instruct.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:868a9f310590c1e6ccfbbcd97fe46ab057179486f476115b6580b43ed36eb8cc
|
| 3 |
+
size 2104934208
|
A2Search-3B-Instruct.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:794283be7661d34eed74261d9d44715c24af1d4bc5e7e0cbdaf8f269a0170e53
|
| 3 |
+
size 2009415488
|
A2Search-3B-Instruct.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:794483698435ef6ba3b40ef117146455ed1c4a5a785f818acb6c13774643f189
|
| 3 |
+
size 2438741824
|
A2Search-3B-Instruct.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3287c4fe7202e42acb93b1e3b7ccec82f6403dceab1b379d727c3d123a61b86
|
| 3 |
+
size 2383593280
|
A2Search-3B-Instruct.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ec6e4795c050cbef8fcd93e9dd56a0ddcbd9efc0db1d2ad0dc984a0cd51ce1b
|
| 3 |
+
size 2793412416
|