Instructions to use featherless-ai-quants/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF", filename="nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf featherless-ai-quants/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf featherless-ai-quants/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use featherless-ai-quants/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M
- Ollama
How to use featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF with Ollama:
ollama run hf.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M
- Unsloth Studio
How to use featherless-ai-quants/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-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/nayohan-llama3-instrucTrans-enko-8b-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF with Docker Model Runner:
docker model run hf.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M
- Lemonade
How to use featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.nayohan-llama3-instrucTrans-enko-8b-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +47 -0
- featherless-quants.png +3 -0
- nayohan-llama3-instrucTrans-enko-8b-IQ4_XS.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q2_K.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q3_K_L.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q3_K_M.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q3_K_S.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q4_K_M.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q4_K_S.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q5_K_M.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q5_K_S.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q6_K.gguf +3 -0
- nayohan-llama3-instrucTrans-enko-8b-Q8_0.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 |
+
featherless-quants.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
nayohan-llama3-instrucTrans-enko-8b-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
nayohan-llama3-instrucTrans-enko-8b-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
nayohan-llama3-instrucTrans-enko-8b-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
nayohan-llama3-instrucTrans-enko-8b-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
nayohan-llama3-instrucTrans-enko-8b-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
nayohan-llama3-instrucTrans-enko-8b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
nayohan-llama3-instrucTrans-enko-8b-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
nayohan-llama3-instrucTrans-enko-8b-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
nayohan-llama3-instrucTrans-enko-8b-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
nayohan-llama3-instrucTrans-enko-8b-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
nayohan-llama3-instrucTrans-enko-8b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: nayohan-llama3-instrucTrans-enko-8b
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
quantized_by: featherless-ai-quants
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# nayohan-llama3-instrucTrans-enko-8b GGUF Quantizations π
|
| 8 |
+
|
| 9 |
+

|
| 10 |
+
|
| 11 |
+
*Optimized GGUF quantization files for enhanced model performance*
|
| 12 |
+
|
| 13 |
+
> Powered by [Featherless AI](https://featherless.ai) - run any model you'd like for a simple small fee.
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
## Available Quantizations π
|
| 17 |
+
|
| 18 |
+
| Quantization Type | File | Size |
|
| 19 |
+
|-------------------|------|------|
|
| 20 |
+
| IQ4_XS | [nayohan-llama3-instrucTrans-enko-8b-IQ4_XS.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-IQ4_XS.gguf) | 4276.62 MB |
|
| 21 |
+
| Q2_K | [nayohan-llama3-instrucTrans-enko-8b-Q2_K.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q2_K.gguf) | 3031.86 MB |
|
| 22 |
+
| Q3_K_L | [nayohan-llama3-instrucTrans-enko-8b-Q3_K_L.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q3_K_L.gguf) | 4121.74 MB |
|
| 23 |
+
| Q3_K_M | [nayohan-llama3-instrucTrans-enko-8b-Q3_K_M.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q3_K_M.gguf) | 3832.74 MB |
|
| 24 |
+
| Q3_K_S | [nayohan-llama3-instrucTrans-enko-8b-Q3_K_S.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q3_K_S.gguf) | 3494.74 MB |
|
| 25 |
+
| Q4_K_M | [nayohan-llama3-instrucTrans-enko-8b-Q4_K_M.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q4_K_M.gguf) | 4692.78 MB |
|
| 26 |
+
| Q4_K_S | [nayohan-llama3-instrucTrans-enko-8b-Q4_K_S.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q4_K_S.gguf) | 4475.28 MB |
|
| 27 |
+
| Q5_K_M | [nayohan-llama3-instrucTrans-enko-8b-Q5_K_M.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q5_K_M.gguf) | 5467.40 MB |
|
| 28 |
+
| Q5_K_S | [nayohan-llama3-instrucTrans-enko-8b-Q5_K_S.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q5_K_S.gguf) | 5339.90 MB |
|
| 29 |
+
| Q6_K | [nayohan-llama3-instrucTrans-enko-8b-Q6_K.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q6_K.gguf) | 6290.44 MB |
|
| 30 |
+
| Q8_0 | [nayohan-llama3-instrucTrans-enko-8b-Q8_0.gguf](https://huggingface.co/featherless-ai-quants/nayohan-llama3-instrucTrans-enko-8b-GGUF/blob/main/nayohan-llama3-instrucTrans-enko-8b-Q8_0.gguf) | 8145.11 MB |
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## β‘ Powered by [Featherless AI](https://featherless.ai)
|
| 36 |
+
|
| 37 |
+
### Key Features
|
| 38 |
+
|
| 39 |
+
- π₯ **Instant Hosting** - Deploy any Llama model on HuggingFace instantly
|
| 40 |
+
- π οΈ **Zero Infrastructure** - No server setup or maintenance required
|
| 41 |
+
- π **Vast Compatibility** - Support for 2400+ models and counting
|
| 42 |
+
- π **Affordable Pricing** - Starting at just $10/month
|
| 43 |
+
|
| 44 |
+
---
|
| 45 |
+
|
| 46 |
+
**Links:**
|
| 47 |
+
[Get Started](https://featherless.ai) | [Documentation](https://featherless.ai/docs) | [Models](https://featherless.ai/models)
|
featherless-quants.png
ADDED
|
Git LFS Details
|
nayohan-llama3-instrucTrans-enko-8b-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b30dd708a40b3d14e93512356248758a8613b8b85da440bf381c0341ca3c757f
|
| 3 |
+
size 4484363328
|
nayohan-llama3-instrucTrans-enko-8b-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6257ea85f298de45c2a7324ede30f7434a62d9a841c83c5b9b86bf7faa3bbee
|
| 3 |
+
size 3179131968
|
nayohan-llama3-instrucTrans-enko-8b-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53e4ca6ae31a689a0f3d781ba43fe55f5b04f6196a54cacb51eff6728526985e
|
| 3 |
+
size 4321956928
|
nayohan-llama3-instrucTrans-enko-8b-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:640a33690cca4f90b31e352650a66bdf40178d3d4e9e22466dffe9c037714f53
|
| 3 |
+
size 4018918464
|
nayohan-llama3-instrucTrans-enko-8b-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b871710ef7c857a03ad8c17788e7fe64c2fad0ba0d7dba3df96d635e41eb054b
|
| 3 |
+
size 3664499776
|
nayohan-llama3-instrucTrans-enko-8b-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e79cbd6f75ee563ef079685c8de226f8a828ad0957c78eda7d3940e89a9dca82
|
| 3 |
+
size 4920734784
|
nayohan-llama3-instrucTrans-enko-8b-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f7071853993419cce1b87626a1d89e86fc6c7a84cc515f20fd7f719f165d4c7
|
| 3 |
+
size 4692669504
|
nayohan-llama3-instrucTrans-enko-8b-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f2a394ac56e275a485d083ff5bffe8643f0eae501884ab3d09bed4affdf4445
|
| 3 |
+
size 5732987968
|
nayohan-llama3-instrucTrans-enko-8b-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5424234a7f00faa4998fad37b8514c07eba60eeabcf500101306d35caa79a8f9
|
| 3 |
+
size 5599294528
|
nayohan-llama3-instrucTrans-enko-8b-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9deb2f5f1cc229d1de049d55c4c2382d9e7c8a1c3d3fcd461184c595c663dca5
|
| 3 |
+
size 6596006976
|
nayohan-llama3-instrucTrans-enko-8b-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc942718bf41d7e6a32bd315e89f9ac30f62511409f2579238f2a4fb6d6dc7a2
|
| 3 |
+
size 8540771392
|