Instructions to use FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context 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 FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M # Run inference directly in the terminal: llama cli -hf FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M # Run inference directly in the terminal: llama cli -hf FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context: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 FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context: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 FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M
Use Docker
docker model run hf.co/FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context with Ollama:
ollama run hf.co/FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context with Docker Model Runner:
docker model run hf.co/FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M
- Lemonade
How to use FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FunnyPunch/LLAMA-3_8B_Unaligned_BETA_Long_Context:Q4_K_M
Run and chat with the model
lemonade run user.LLAMA-3_8B_Unaligned_BETA_Long_Context-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,4 +2,6 @@
|
|
| 2 |
license: llama3.1
|
| 3 |
---
|
| 4 |
For now this is just a test of various basic techniques of increasing the context window on the best 8B model there is, that has 1 big problem, the limit of context window being just 16384.
|
| 5 |
-
I strongly suggest not downloading, or if you do...I guess tell me how bad this is. It's first time I upload anything on HF ever. Or Git. Or do anything on the internet since writing pages in HTTP in 1999.
|
|
|
|
|
|
|
|
|
| 2 |
license: llama3.1
|
| 3 |
---
|
| 4 |
For now this is just a test of various basic techniques of increasing the context window on the best 8B model there is, that has 1 big problem, the limit of context window being just 16384.
|
| 5 |
+
I strongly suggest not downloading, or if you do...I guess tell me how bad this is. It's first time I upload anything on HF ever. Or Git. Or do anything on the internet since writing pages in HTTP in 1999.
|
| 6 |
+
|
| 7 |
+
Go here for original: https://huggingface.co/SicariusSicariiStuff/LLAMA-3_8B_Unaligned_BETA
|