Instructions to use mradermacher/gpt2-alpaca-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/gpt2-alpaca-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/gpt2-alpaca-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/gpt2-alpaca-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/gpt2-alpaca-i1-GGUF", filename="gpt2-alpaca.i1-IQ1_M.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/gpt2-alpaca-i1-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/gpt2-alpaca-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/gpt2-alpaca-i1-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/gpt2-alpaca-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/gpt2-alpaca-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/gpt2-alpaca-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/gpt2-alpaca-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/gpt2-alpaca-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/gpt2-alpaca-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/gpt2-alpaca-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/gpt2-alpaca-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/gpt2-alpaca-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/gpt2-alpaca-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/gpt2-alpaca-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/gpt2-alpaca-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/gpt2-alpaca-i1-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/gpt2-alpaca-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/gpt2-alpaca-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/gpt2-alpaca-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/gpt2-alpaca-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.gpt2-alpaca-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rain
Browse files- .gitattributes +24 -0
- gpt2-alpaca.i1-IQ1_M.gguf +3 -0
- gpt2-alpaca.i1-IQ1_S.gguf +3 -0
- gpt2-alpaca.i1-IQ2_M.gguf +3 -0
- gpt2-alpaca.i1-IQ2_S.gguf +3 -0
- gpt2-alpaca.i1-IQ2_XS.gguf +3 -0
- gpt2-alpaca.i1-IQ2_XXS.gguf +3 -0
- gpt2-alpaca.i1-IQ3_M.gguf +3 -0
- gpt2-alpaca.i1-IQ3_S.gguf +3 -0
- gpt2-alpaca.i1-IQ3_XS.gguf +3 -0
- gpt2-alpaca.i1-IQ3_XXS.gguf +3 -0
- gpt2-alpaca.i1-IQ4_NL.gguf +3 -0
- gpt2-alpaca.i1-IQ4_XS.gguf +3 -0
- gpt2-alpaca.i1-Q2_K.gguf +3 -0
- gpt2-alpaca.i1-Q2_K_S.gguf +3 -0
- gpt2-alpaca.i1-Q3_K_L.gguf +3 -0
- gpt2-alpaca.i1-Q3_K_M.gguf +3 -0
- gpt2-alpaca.i1-Q3_K_S.gguf +3 -0
- gpt2-alpaca.i1-Q4_0.gguf +3 -0
- gpt2-alpaca.i1-Q4_1.gguf +3 -0
- gpt2-alpaca.i1-Q4_K_M.gguf +3 -0
- gpt2-alpaca.i1-Q4_K_S.gguf +3 -0
- gpt2-alpaca.i1-Q5_K_M.gguf +3 -0
- gpt2-alpaca.i1-Q5_K_S.gguf +3 -0
- gpt2-alpaca.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 |
imatrix.dat 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 |
imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
gpt2-alpaca.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
gpt2-alpaca.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
gpt2-alpaca.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
gpt2-alpaca.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
gpt2-alpaca.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
gpt2-alpaca.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
gpt2-alpaca.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
gpt2-alpaca.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
gpt2-alpaca.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
gpt2-alpaca.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
gpt2-alpaca.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
gpt2-alpaca.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
gpt2-alpaca.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
gpt2-alpaca.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
gpt2-alpaca.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
gpt2-alpaca.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
gpt2-alpaca.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
gpt2-alpaca.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
gpt2-alpaca.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
gpt2-alpaca.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
gpt2-alpaca.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
gpt2-alpaca.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
gpt2-alpaca.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
gpt2-alpaca.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
gpt2-alpaca.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86b3ae5b9c3abcf549afdbff7ada513a2e4029a291a8ef00ea18015a8edba446
|
| 3 |
+
size 51058656
|
gpt2-alpaca.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:892d78e170f01b2d808066f17247de6c68df6ce5e7ee0e44654bde46e4e6772f
|
| 3 |
+
size 49289184
|
gpt2-alpaca.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce86c9131ef1dc0a46dae704a3dea01a677f33847b36ac7b4c39d26cb4601d26
|
| 3 |
+
size 60182496
|
gpt2-alpaca.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84a055fd969fbcaa20eaa14d701e2fc779c399b6879f9117c4244fe817e33849
|
| 3 |
+
size 57823200
|
gpt2-alpaca.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6471e72b753b1101e82b219fb4104a4bc0f5493ac235454ed8b95204aa184c2
|
| 3 |
+
size 56588256
|
gpt2-alpaca.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0020587e74d9d2f43c47f140d26221e88b99c49b8393cbd063d316f7e88e6de
|
| 3 |
+
size 54007776
|
gpt2-alpaca.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1b91f37c4b927af72e32bffb4e1870daa8e10511404a230c0e8409e5bd9f4a1
|
| 3 |
+
size 77640032
|
gpt2-alpaca.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a62e58efdefeed524205c294281d94f3275e783da4f1d1ebb0115102730cce9
|
| 3 |
+
size 73566560
|
gpt2-alpaca.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20bb6a816e3f0f09163383c4756101f37d563f7d1a144a9b5c5f9848c9bfeace
|
| 3 |
+
size 72571232
|
gpt2-alpaca.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a546782fc5310ba7c542c2ad3241484944711ee2e1c7505a2822ec3adc606db
|
| 3 |
+
size 64790496
|
gpt2-alpaca.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eaa90a0f176dc471829f44dd6c9d06e5209824a187a9142e81c993b6c43dc4b2
|
| 3 |
+
size 84846944
|
gpt2-alpaca.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37480b116bc41e11b2a16b1d40d7ed50731ca65205b366ce840877332dbcc20e
|
| 3 |
+
size 82192736
|
gpt2-alpaca.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f8df5e2c05d50248ca3d0f3c8a8779554d5b24b1228ddcbb9dbce60ebdfc5f0
|
| 3 |
+
size 68534624
|
gpt2-alpaca.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20a9652a6dab8c85c519c0b61e2aab19ce446697f85d8c780e3fc9eb98233ed7
|
| 3 |
+
size 65493344
|
gpt2-alpaca.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27cda52b1046b43ef26ea656f461cc8398bb54d7715a2bc026a600b110343fdf
|
| 3 |
+
size 85510496
|
gpt2-alpaca.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b8faf786989d42778467faf94a19f44a9c4a3d0696cb9bea4b9227c392214f6
|
| 3 |
+
size 81086816
|
gpt2-alpaca.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70dcd8094f3da2659d8cbba52f6263e46ea9869a09ac327adb17aabdae36fae6
|
| 3 |
+
size 73566560
|
gpt2-alpaca.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5248d82b3e0ec633ad0c952e69d3a71c13026d14609304b180cd0a3f1fa4db7
|
| 3 |
+
size 84994400
|
gpt2-alpaca.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:350ddd8dcd9a6d80fccd483d87719c70f8832ede5e3643aff3f6b18ab1358753
|
| 3 |
+
size 90155360
|
gpt2-alpaca.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b90c43735c6a26c2e7fe18b6a8ee111e4510b6d7ee61289946b97ae65912416
|
| 3 |
+
size 91150688
|
gpt2-alpaca.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab18b11c49b15375b2a14efb7478301fabdba20d319956c13f4d703acb687b9b
|
| 3 |
+
size 85141856
|
gpt2-alpaca.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95ac6319f00dd2e21c4d2b8d931e1cd4e7976d5ddfd7599bc5be6b6683765f50
|
| 3 |
+
size 100163936
|
gpt2-alpaca.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d144912dcb29692226ab4412216419b82f73d3b87380e5eb45c36ae254319090
|
| 3 |
+
size 95463776
|
gpt2-alpaca.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e4e9801e39a1a1026668714c9199eaa7971432878be650c8b7612a65f3b6224
|
| 3 |
+
size 106744160
|