Instructions to use l3utterfly/Llama-3SOME-8B-v2-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use l3utterfly/Llama-3SOME-8B-v2-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="l3utterfly/Llama-3SOME-8B-v2-gguf", filename="Llama-3SOME-8B-v2-Q2_K.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 l3utterfly/Llama-3SOME-8B-v2-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 l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf l3utterfly/Llama-3SOME-8B-v2-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 l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf l3utterfly/Llama-3SOME-8B-v2-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 l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf l3utterfly/Llama-3SOME-8B-v2-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 l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M
Use Docker
docker model run hf.co/l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use l3utterfly/Llama-3SOME-8B-v2-gguf with Ollama:
ollama run hf.co/l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M
- Unsloth Studio
How to use l3utterfly/Llama-3SOME-8B-v2-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 l3utterfly/Llama-3SOME-8B-v2-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 l3utterfly/Llama-3SOME-8B-v2-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for l3utterfly/Llama-3SOME-8B-v2-gguf to start chatting
- Atomic Chat new
- Docker Model Runner
How to use l3utterfly/Llama-3SOME-8B-v2-gguf with Docker Model Runner:
docker model run hf.co/l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M
- Lemonade
How to use l3utterfly/Llama-3SOME-8B-v2-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull l3utterfly/Llama-3SOME-8B-v2-gguf:Q4_K_M
Run and chat with the model
lemonade run user.Llama-3SOME-8B-v2-gguf-Q4_K_M
List all available models
lemonade list
Commit ·
23d43ad
1
Parent(s): 3ad8645
Add quantised GGUF files
Browse files- .gitattributes +1 -0
- Llama-3SOME-8B-v2-Q2_K.gguf +3 -0
- Llama-3SOME-8B-v2-Q4_0_4_4.gguf +3 -0
- Llama-3SOME-8B-v2-Q4_0_4_8.gguf +3 -0
- Llama-3SOME-8B-v2-Q4_0_8_8.gguf +3 -0
- Llama-3SOME-8B-v2-Q4_K_M.gguf +3 -0
- Llama-3SOME-8B-v2-Q6_K.gguf +3 -0
- Llama-3SOME-8B-v2-Q8_0.gguf +3 -0
- Llama-3SOME-8B-v2-f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
Llama-3SOME-8B-v2-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b9ee79a96a7e6af35d21ff673eccc30ea14139973aceb38f85ccf41e1a1a4c2
|
| 3 |
+
size 3179131552
|
Llama-3SOME-8B-v2-Q4_0_4_4.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f6f1ce9f2e08ab115a0332e6dc74b543a5e955c854cab6793d0e2e8c2d5bee1
|
| 3 |
+
size 4661211808
|
Llama-3SOME-8B-v2-Q4_0_4_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bee26079d63218c03de3fe63f56d074289ac9a4f2554daa73c1550ebc4083ed1
|
| 3 |
+
size 4661211808
|
Llama-3SOME-8B-v2-Q4_0_8_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb73ec50e1a076ee4dbd102506b7b5e3b335209168a83a8478dd9c71640c3d87
|
| 3 |
+
size 4661211808
|
Llama-3SOME-8B-v2-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:741998ca198f0c67f133f634e1e71998e8a77da4025cf2abf46f2174244f614b
|
| 3 |
+
size 4920734368
|
Llama-3SOME-8B-v2-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8611a37d9bf13c682c35e5687db4597e6360712b15491a88b9950c73d318692b
|
| 3 |
+
size 6596006560
|
Llama-3SOME-8B-v2-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86ca290a61089ffb34e6bb26f5a7279da62604006020a7f0fb69cb03ca8d185e
|
| 3 |
+
size 8540770976
|
Llama-3SOME-8B-v2-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:980f6ba108acad4c58b97025e8e4895a8eb6a3eaa12e25b2d22f6a38c4c4f115
|
| 3 |
+
size 16068891296
|