Transformers
GGUF
PyTorch
English
biology
scRNAseq
gemma2
genomics
computational-biology
bioinformatics
gene-expression
cell-biology
cell-type-annotation
Question Answering
Instructions to use mradermacher/C2S-Scale-Gemma-2-2B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/C2S-Scale-Gemma-2-2B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/C2S-Scale-Gemma-2-2B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/C2S-Scale-Gemma-2-2B-GGUF 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 mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/C2S-Scale-Gemma-2-2B-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/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/C2S-Scale-Gemma-2-2B-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/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/C2S-Scale-Gemma-2-2B-GGUF with Ollama:
ollama run hf.co/mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/C2S-Scale-Gemma-2-2B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/C2S-Scale-Gemma-2-2B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/C2S-Scale-Gemma-2-2B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.C2S-Scale-Gemma-2-2B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- C2S-Scale-Gemma-2-2B.IQ4_XS.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q2_K.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q3_K_L.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q3_K_M.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q3_K_S.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q4_K_M.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q4_K_S.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q5_K_M.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q5_K_S.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q6_K.gguf +3 -0
- C2S-Scale-Gemma-2-2B.Q8_0.gguf +3 -0
- C2S-Scale-Gemma-2-2B.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
C2S-Scale-Gemma-2-2B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
C2S-Scale-Gemma-2-2B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
C2S-Scale-Gemma-2-2B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
C2S-Scale-Gemma-2-2B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
C2S-Scale-Gemma-2-2B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
C2S-Scale-Gemma-2-2B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
C2S-Scale-Gemma-2-2B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
C2S-Scale-Gemma-2-2B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
C2S-Scale-Gemma-2-2B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
C2S-Scale-Gemma-2-2B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
C2S-Scale-Gemma-2-2B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
C2S-Scale-Gemma-2-2B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
C2S-Scale-Gemma-2-2B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae9ac8d281c09c58b13babe5b1a061d81bfbaa3ec73528633ff7665dc722b28d
|
| 3 |
+
size 1576204928
|
C2S-Scale-Gemma-2-2B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:704fa30f9101178628027df1e4b506cf5479002c08a6942036bc852114341b38
|
| 3 |
+
size 1229830784
|
C2S-Scale-Gemma-2-2B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d85c4ead8cf4c5cb60f24ee90d1ef2aa311dbb70fa4891566a73a02a1b7a67f
|
| 3 |
+
size 1550436992
|
C2S-Scale-Gemma-2-2B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fbe09bc09f5fc0b26aec5302063fd83461bed3f5d01649c046bb3dc0535afcd
|
| 3 |
+
size 1461668480
|
C2S-Scale-Gemma-2-2B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0dd8e4b2b3eaeb286fce8124ff6bc5d33e766bd971c4040934cbbed56e65bbfe
|
| 3 |
+
size 1360661120
|
C2S-Scale-Gemma-2-2B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:704b01e6319dcf7fe0b63c77ae2a2c7fef1419ff3802a6d87db049c063da0ae6
|
| 3 |
+
size 1708583552
|
C2S-Scale-Gemma-2-2B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3532a9f79b48af67bd608f5f2780278ba89f525211f5736cb73d960a82b470f
|
| 3 |
+
size 1638652544
|
C2S-Scale-Gemma-2-2B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc46e1481b00a519c0ae8b9d4ce5c8aada8dc13a0825f85f93a4ff267b1030f1
|
| 3 |
+
size 1923279488
|
C2S-Scale-Gemma-2-2B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:201bf497c85203b01db21e2e2263512c47ab9c6e36bdd0138fe0316f57fbfa4e
|
| 3 |
+
size 1882544768
|
C2S-Scale-Gemma-2-2B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc9a98a9eb3327c48ec722ad5ee49a6ec5a2d90df00661941ab0943f944d876d
|
| 3 |
+
size 2151393920
|
C2S-Scale-Gemma-2-2B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00fc3298034a930513e324cc7e6990ad49d6709a07d5f62e474bb296614742c7
|
| 3 |
+
size 2784496256
|
C2S-Scale-Gemma-2-2B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5dedeaf88559f5c4bae6c4963b9ca9ff605c5236f873e8e2e81984f135d0d6a
|
| 3 |
+
size 5235214976
|