Instructions to use mradermacher/HourAI-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/HourAI-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/HourAI-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/HourAI-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/HourAI-GGUF", filename="HourAI.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use mradermacher/HourAI-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/HourAI-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/HourAI-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/HourAI-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/HourAI-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/HourAI-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/HourAI-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/HourAI-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/HourAI-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/HourAI-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/HourAI-GGUF with Ollama:
ollama run hf.co/mradermacher/HourAI-GGUF:Q4_K_M
- Unsloth Studio new
How to use mradermacher/HourAI-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/HourAI-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/HourAI-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/HourAI-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/HourAI-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/HourAI-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/HourAI-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/HourAI-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.HourAI-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- HourAI.IQ4_XS.gguf +3 -0
- HourAI.Q2_K.gguf +3 -0
- HourAI.Q3_K_L.gguf +3 -0
- HourAI.Q3_K_M.gguf +3 -0
- HourAI.Q3_K_S.gguf +3 -0
- HourAI.Q4_K_M.gguf +3 -0
- HourAI.Q4_K_S.gguf +3 -0
- HourAI.Q5_K_M.gguf +3 -0
- HourAI.Q5_K_S.gguf +3 -0
- HourAI.Q6_K.gguf +3 -0
- HourAI.Q8_0.gguf +3 -0
- HourAI.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 |
+
HourAI.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
HourAI.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
HourAI.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
HourAI.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
HourAI.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
HourAI.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
HourAI.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
HourAI.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
HourAI.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
HourAI.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
HourAI.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
HourAI.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
HourAI.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:411d18f583212804d66d7753dbc0576d934cd1e8409ac2d953463e018dd15722
|
| 3 |
+
size 211878304
|
HourAI.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3efa690e70f66b1d52d18685325f68799fd00010733564843ddc51be112b401
|
| 3 |
+
size 161350048
|
HourAI.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7f2c772a137dbbf40bcadfe0b08274998aadbe3e324142b8dbbc3fbea247611
|
| 3 |
+
size 221708704
|
HourAI.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ad4942db38b5ebcac334a8136243900bdde554c4eccac30db743eb797cd5eb7
|
| 3 |
+
size 206504352
|
HourAI.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd6e4e13170ea351ddda79c3e204341d566c89a97b0c1191291039cce59cb406
|
| 3 |
+
size 179241376
|
HourAI.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5de07edcb40e165f75fa9a4c83c7670578003847072a3ee896a8ad26d3500713
|
| 3 |
+
size 241762720
|
HourAI.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20eff1fc9e04cc7d0ca0d272fb1136b4dec4d53390ffc1ebb97ee63d32775642
|
| 3 |
+
size 220922272
|
HourAI.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8ad0a5955daf9c333b7aafbadc4f369111bbd1915f0507ed9947ab60d5e0cf0
|
| 3 |
+
size 273809824
|
HourAI.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bdf35ae92f90eebc4f933fd048dfa1abdf4b5f60396384cf983c5c4a28d10e02
|
| 3 |
+
size 257098144
|
HourAI.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:419c291e2a15b45d83d04ace39ad4258cdbaa135b61b9bad691d5c44bec8c7b9
|
| 3 |
+
size 297206176
|
HourAI.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95cb0a47a344468511df317182f7927c2706eccdddd04776dba752a436ebdee4
|
| 3 |
+
size 382808064
|
HourAI.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f220e71e6047263f9161f48fc2c63cfa676db4a341a33f4f4f9b2af7b71c7771
|
| 3 |
+
size 714170304
|