Instructions to use mradermacher/ScriptForge-medium-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/ScriptForge-medium-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/ScriptForge-medium-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/ScriptForge-medium-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/ScriptForge-medium-GGUF", filename="ScriptForge-medium.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use mradermacher/ScriptForge-medium-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/ScriptForge-medium-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/ScriptForge-medium-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/ScriptForge-medium-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/ScriptForge-medium-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/ScriptForge-medium-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/ScriptForge-medium-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/ScriptForge-medium-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/ScriptForge-medium-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/ScriptForge-medium-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/ScriptForge-medium-GGUF with Ollama:
ollama run hf.co/mradermacher/ScriptForge-medium-GGUF:Q4_K_M
- Unsloth Studio new
How to use mradermacher/ScriptForge-medium-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/ScriptForge-medium-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/ScriptForge-medium-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/ScriptForge-medium-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/ScriptForge-medium-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/ScriptForge-medium-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/ScriptForge-medium-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/ScriptForge-medium-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ScriptForge-medium-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- ScriptForge-medium.IQ4_XS.gguf +3 -0
- ScriptForge-medium.Q2_K.gguf +3 -0
- ScriptForge-medium.Q3_K_L.gguf +3 -0
- ScriptForge-medium.Q3_K_M.gguf +3 -0
- ScriptForge-medium.Q3_K_S.gguf +3 -0
- ScriptForge-medium.Q4_K_M.gguf +3 -0
- ScriptForge-medium.Q4_K_S.gguf +3 -0
- ScriptForge-medium.Q5_K_M.gguf +3 -0
- ScriptForge-medium.Q5_K_S.gguf +3 -0
- ScriptForge-medium.Q6_K.gguf +3 -0
- ScriptForge-medium.Q8_0.gguf +3 -0
- ScriptForge-medium.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 |
+
ScriptForge-medium.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ScriptForge-medium.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ScriptForge-medium.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ScriptForge-medium.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ScriptForge-medium.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ScriptForge-medium.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ScriptForge-medium.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ScriptForge-medium.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ScriptForge-medium.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ScriptForge-medium.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ScriptForge-medium.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ScriptForge-medium.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
ScriptForge-medium.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4033a4717d43a0b6061d46e80304674a0d42a9895372b6392ef139623826207d
|
| 3 |
+
size 82559008
|
ScriptForge-medium.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea299b95bb86feffc09d2f1950ff8b4fa85ece0755633d43b8ca082119ed4796
|
| 3 |
+
size 68532256
|
ScriptForge-medium.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61466afa426f0d114cef666d4c8a22e8ca1cd22083c1a6507ad045e841adf644
|
| 3 |
+
size 85508128
|
ScriptForge-medium.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e851abbd9b0b6932d8ed718848893744db923b9dc8a7662edcbf87d3cb4136e7
|
| 3 |
+
size 81084448
|
ScriptForge-medium.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:866cf15fe3f3a1ce5357881f94c498925176e845876d6c33f2332b9369cbcb0e
|
| 3 |
+
size 73564192
|
ScriptForge-medium.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9744464d5d2bad9bc63ad20ceec6dceb4f3d366158c402c6dd06821b4cd4261
|
| 3 |
+
size 91148320
|
ScriptForge-medium.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47df1f46a488427c2ade8c95527110730df9888d0051fdfbeb4003086ff26048
|
| 3 |
+
size 85139488
|
ScriptForge-medium.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78350166cf8598846f05bdff785327660403b779fdca78aa1a6f77a775904bbb
|
| 3 |
+
size 100161568
|
ScriptForge-medium.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bc6e08a5f2c839111280acbb03f740deb9c10527ea96c7af4fe417a8b996b73
|
| 3 |
+
size 95461408
|
ScriptForge-medium.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea05bab70d999f3f031ca9405927d47292274de711c398a4c41edf9831e0ddc9
|
| 3 |
+
size 106741792
|
ScriptForge-medium.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:819911d2f76df960cd84a91277b6d64977f91448c3e4b79bb06df4633760e38b
|
| 3 |
+
size 136659712
|
ScriptForge-medium.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a94262baa06be8b36e55b6ab9251798b2d2c55be93b4907b680f733ccb7c7587
|
| 3 |
+
size 252470976
|