Instructions to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF", filename="ajibawa-2023-Uncensored-Frank-Llama-3-8B-IQ4_XS.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-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 featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-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 featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-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 featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-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 featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M
- Unsloth Studio
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-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 featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-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 featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +46 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-IQ4_XS.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q2_K.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_L.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_M.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_S.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_M.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_S.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_M.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_S.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q6_K.gguf +3 -0
- ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q8_0.gguf +3 -0
- featherless-quants.png +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 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
featherless-quants.png filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: ajibawa-2023/Uncensored-Frank-Llama-3-8B
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# ajibawa-2023/Uncensored-Frank-Llama-3-8B GGUF Quantizations π
|
| 8 |
+
|
| 9 |
+

|
| 10 |
+
|
| 11 |
+
*Optimized GGUF quantization files for enhanced model performance*
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## Available Quantizations π
|
| 16 |
+
|
| 17 |
+
| Quantization Type | File | Size |
|
| 18 |
+
|-------------------|------|------|
|
| 19 |
+
| Q8_0 | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q8_0.gguf) | 8145.11 MB |
|
| 20 |
+
| Q4_K_S | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_S.gguf) | 4475.28 MB |
|
| 21 |
+
| Q2_K | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q6_K | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q6_K.gguf) | 6290.44 MB |
|
| 23 |
+
| Q3_K_M | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q3_K_L | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_L.gguf) | 4121.74 MB |
|
| 26 |
+
| Q4_K_M | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_M.gguf) | 4692.78 MB |
|
| 27 |
+
| Q5_K_S | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_S.gguf) | 5339.90 MB |
|
| 28 |
+
| Q5_K_M | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_M.gguf) | 5467.40 MB |
|
| 29 |
+
| IQ4_XS | [ajibawa-2023-Uncensored-Frank-Llama-3-8B-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/ajibawa-2023-Uncensored-Frank-Llama-3-8B-GGUF/blob/main/ajibawa-2023-Uncensored-Frank-Llama-3-8B-IQ4_XS.gguf) | 4276.62 MB |
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
+
## β‘ Powered by [Featherless AI](https://featherless.ai)
|
| 35 |
+
|
| 36 |
+
### Key Features
|
| 37 |
+
|
| 38 |
+
- π₯ **Instant Hosting** - Deploy any Llama model on HuggingFace instantly
|
| 39 |
+
- π οΈ **Zero Infrastructure** - No server setup or maintenance required
|
| 40 |
+
- π **Vast Compatibility** - Support for 2400+ models and counting
|
| 41 |
+
- π **Affordable Pricing** - Starting at just $10/month
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
**Links:**
|
| 46 |
+
[Get Started](https://featherless.ai) | [Documentation](https://featherless.ai/docs) | [Models](https://featherless.ai/models)
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc118e2bf3cf28a853554deb304a5e1438a83537fb3e2fb692c59e540054bab4
|
| 3 |
+
size 4484362848
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9c7c399e6f4dbf064fac4c60a1e6c06d154925643e109c3d4d47fc554affcf3
|
| 3 |
+
size 3179131488
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c1b12341363f657c912a0db83c3aa2156d3b135b443cfdc0e634d0b8d35b41c
|
| 3 |
+
size 4321956448
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3982dd5afd37fc286004854dc3df9541e7dd97582120938b023b230592669725
|
| 3 |
+
size 4018917984
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ba3a380db54456f63ca52dfa79012f3abea40ae527366bf8fad88019db6f078
|
| 3 |
+
size 3664499296
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ebf212c67c1b3ebafe14a77158bf335f5e8da81d7c964db5277e1488de7fbb44
|
| 3 |
+
size 4920734304
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f857abb8b59ad8f991d5ab55e7f6caf143737df54286c1c64d5faa258ff849f
|
| 3 |
+
size 4692669024
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3591da3f571854322134b0dc50588fab7d8f10db81221d3ee22c2851067e6fe5
|
| 3 |
+
size 5732987488
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3708f9f08deff2e3634c1492efdaac6fa1138a4810378daea2a90f66c2b17b91
|
| 3 |
+
size 5599294048
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6dbc2ccad35dc206e7e2ae7cb8842d054086b236c71886221255e9f61a540290
|
| 3 |
+
size 6596006496
|
ajibawa-2023-Uncensored-Frank-Llama-3-8B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:223ad0fa410427aeb4121f25b2b5ec64ddecd53b23f009fe91b2da3d0d368ce6
|
| 3 |
+
size 8540770912
|
featherless-quants.png
ADDED
|
Git LFS Details
|