Instructions to use tensorblock/upstage_llama-30b-instruct-2048-GGUF 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 tensorblock/upstage_llama-30b-instruct-2048-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 tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
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 tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
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 tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/upstage_llama-30b-instruct-2048-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/upstage_llama-30b-instruct-2048-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/upstage_llama-30b-instruct-2048-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
- Ollama
How to use tensorblock/upstage_llama-30b-instruct-2048-GGUF with Ollama:
ollama run hf.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/upstage_llama-30b-instruct-2048-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 tensorblock/upstage_llama-30b-instruct-2048-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 tensorblock/upstage_llama-30b-instruct-2048-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/upstage_llama-30b-instruct-2048-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/upstage_llama-30b-instruct-2048-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
- Lemonade
How to use tensorblock/upstage_llama-30b-instruct-2048-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/upstage_llama-30b-instruct-2048-GGUF:Q2_K
Run and chat with the model
lemonade run user.upstage_llama-30b-instruct-2048-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +124 -0
- llama-30b-instruct-2048-Q2_K.gguf +3 -0
- llama-30b-instruct-2048-Q3_K_L.gguf +3 -0
- llama-30b-instruct-2048-Q3_K_M.gguf +3 -0
- llama-30b-instruct-2048-Q3_K_S.gguf +3 -0
- llama-30b-instruct-2048-Q4_0.gguf +3 -0
- llama-30b-instruct-2048-Q4_K_M.gguf +3 -0
- llama-30b-instruct-2048-Q4_K_S.gguf +3 -0
- llama-30b-instruct-2048-Q5_0.gguf +3 -0
- llama-30b-instruct-2048-Q5_K_M.gguf +3 -0
- llama-30b-instruct-2048-Q5_K_S.gguf +3 -0
- llama-30b-instruct-2048-Q6_K.gguf +3 -0
- llama-30b-instruct-2048-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 |
+
llama-30b-instruct-2048-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
llama-30b-instruct-2048-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
llama-30b-instruct-2048-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
llama-30b-instruct-2048-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
llama-30b-instruct-2048-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
llama-30b-instruct-2048-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
llama-30b-instruct-2048-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
llama-30b-instruct-2048-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
llama-30b-instruct-2048-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
llama-30b-instruct-2048-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
llama-30b-instruct-2048-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
llama-30b-instruct-2048-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
datasets:
|
| 3 |
+
- sciq
|
| 4 |
+
- metaeval/ScienceQA_text_only
|
| 5 |
+
- GAIR/lima
|
| 6 |
+
- Open-Orca/OpenOrca
|
| 7 |
+
- openbookqa
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
tags:
|
| 11 |
+
- upstage
|
| 12 |
+
- llama
|
| 13 |
+
- instruct
|
| 14 |
+
- instruction
|
| 15 |
+
- TensorBlock
|
| 16 |
+
- GGUF
|
| 17 |
+
pipeline_tag: text-generation
|
| 18 |
+
base_model: upstage/llama-30b-instruct-2048
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 22 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 23 |
+
</div>
|
| 24 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 25 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 26 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 27 |
+
Feedback and support: TensorBlock's <a href="https://x.com/tensorblock_aoi">Twitter/X</a>, <a href="https://t.me/TensorBlock">Telegram Group</a> and <a href="https://x.com/tensorblock_aoi">Discord server</a>
|
| 28 |
+
</p>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
|
| 32 |
+
## upstage/llama-30b-instruct-2048 - GGUF
|
| 33 |
+
|
| 34 |
+
This repo contains GGUF format model files for [upstage/llama-30b-instruct-2048](https://huggingface.co/upstage/llama-30b-instruct-2048).
|
| 35 |
+
|
| 36 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b5165](https://github.com/ggml-org/llama.cpp/commit/1d735c0b4fa0551c51c2f4ac888dd9a01f447985).
|
| 37 |
+
|
| 38 |
+
## Our projects
|
| 39 |
+
<table border="1" cellspacing="0" cellpadding="10">
|
| 40 |
+
<tr>
|
| 41 |
+
<th style="font-size: 25px;">Awesome MCP Servers</th>
|
| 42 |
+
<th style="font-size: 25px;">TensorBlock Studio</th>
|
| 43 |
+
</tr>
|
| 44 |
+
<tr>
|
| 45 |
+
<th><img src="https://imgur.com/2Xov7B7.jpeg" alt="Project A" width="450"/></th>
|
| 46 |
+
<th><img src="https://imgur.com/pJcmF5u.jpeg" alt="Project B" width="450"/></th>
|
| 47 |
+
</tr>
|
| 48 |
+
<tr>
|
| 49 |
+
<th>A comprehensive collection of Model Context Protocol (MCP) servers.</th>
|
| 50 |
+
<th>A lightweight, open, and extensible multi-LLM interaction studio.</th>
|
| 51 |
+
</tr>
|
| 52 |
+
<tr>
|
| 53 |
+
<th>
|
| 54 |
+
<a href="https://github.com/TensorBlock/awesome-mcp-servers" target="_blank" style="
|
| 55 |
+
display: inline-block;
|
| 56 |
+
padding: 8px 16px;
|
| 57 |
+
background-color: #FF7F50;
|
| 58 |
+
color: white;
|
| 59 |
+
text-decoration: none;
|
| 60 |
+
border-radius: 6px;
|
| 61 |
+
font-weight: bold;
|
| 62 |
+
font-family: sans-serif;
|
| 63 |
+
">👀 See what we built 👀</a>
|
| 64 |
+
</th>
|
| 65 |
+
<th>
|
| 66 |
+
<a href="https://github.com/TensorBlock/TensorBlock-Studio" target="_blank" style="
|
| 67 |
+
display: inline-block;
|
| 68 |
+
padding: 8px 16px;
|
| 69 |
+
background-color: #FF7F50;
|
| 70 |
+
color: white;
|
| 71 |
+
text-decoration: none;
|
| 72 |
+
border-radius: 6px;
|
| 73 |
+
font-weight: bold;
|
| 74 |
+
font-family: sans-serif;
|
| 75 |
+
">👀 See what we built 👀</a>
|
| 76 |
+
</th>
|
| 77 |
+
</tr>
|
| 78 |
+
</table>
|
| 79 |
+
|
| 80 |
+
## Prompt template
|
| 81 |
+
|
| 82 |
+
```
|
| 83 |
+
Unable to determine prompt format automatically. Please check the original model repository for the correct prompt format.
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
## Model file specification
|
| 87 |
+
|
| 88 |
+
| Filename | Quant type | File Size | Description |
|
| 89 |
+
| -------- | ---------- | --------- | ----------- |
|
| 90 |
+
| [llama-30b-instruct-2048-Q2_K.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q2_K.gguf) | Q2_K | 12.049 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 91 |
+
| [llama-30b-instruct-2048-Q3_K_S.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q3_K_S.gguf) | Q3_K_S | 14.064 GB | very small, high quality loss |
|
| 92 |
+
| [llama-30b-instruct-2048-Q3_K_M.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q3_K_M.gguf) | Q3_K_M | 15.776 GB | very small, high quality loss |
|
| 93 |
+
| [llama-30b-instruct-2048-Q3_K_L.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q3_K_L.gguf) | Q3_K_L | 17.280 GB | small, substantial quality loss |
|
| 94 |
+
| [llama-30b-instruct-2048-Q4_0.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q4_0.gguf) | Q4_0 | 18.356 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 95 |
+
| [llama-30b-instruct-2048-Q4_K_S.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q4_K_S.gguf) | Q4_K_S | 18.482 GB | small, greater quality loss |
|
| 96 |
+
| [llama-30b-instruct-2048-Q4_K_M.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q4_K_M.gguf) | Q4_K_M | 19.621 GB | medium, balanced quality - recommended |
|
| 97 |
+
| [llama-30b-instruct-2048-Q5_0.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q5_0.gguf) | Q5_0 | 22.395 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 98 |
+
| [llama-30b-instruct-2048-Q5_K_S.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q5_K_S.gguf) | Q5_K_S | 22.395 GB | large, low quality loss - recommended |
|
| 99 |
+
| [llama-30b-instruct-2048-Q5_K_M.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q5_K_M.gguf) | Q5_K_M | 23.047 GB | large, very low quality loss - recommended |
|
| 100 |
+
| [llama-30b-instruct-2048-Q6_K.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q6_K.gguf) | Q6_K | 26.687 GB | very large, extremely low quality loss |
|
| 101 |
+
| [llama-30b-instruct-2048-Q8_0.gguf](https://huggingface.co/tensorblock/upstage_llama-30b-instruct-2048-GGUF/blob/main/llama-30b-instruct-2048-Q8_0.gguf) | Q8_0 | 34.565 GB | very large, extremely low quality loss - not recommended |
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
## Downloading instruction
|
| 105 |
+
|
| 106 |
+
### Command line
|
| 107 |
+
|
| 108 |
+
Firstly, install Huggingface Client
|
| 109 |
+
|
| 110 |
+
```shell
|
| 111 |
+
pip install -U "huggingface_hub[cli]"
|
| 112 |
+
```
|
| 113 |
+
|
| 114 |
+
Then, downoad the individual model file the a local directory
|
| 115 |
+
|
| 116 |
+
```shell
|
| 117 |
+
huggingface-cli download tensorblock/upstage_llama-30b-instruct-2048-GGUF --include "llama-30b-instruct-2048-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 118 |
+
```
|
| 119 |
+
|
| 120 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 121 |
+
|
| 122 |
+
```shell
|
| 123 |
+
huggingface-cli download tensorblock/upstage_llama-30b-instruct-2048-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 124 |
+
```
|
llama-30b-instruct-2048-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:839a71d8451d78d3c9c82eb41037db150432678789bb137dc399949e3210cee5
|
| 3 |
+
size 12048876224
|
llama-30b-instruct-2048-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bfc929166a0b7316b678ddf6c88980ff9384fcd51d921bcf28e8b2e6f90472d
|
| 3 |
+
size 17279760064
|
llama-30b-instruct-2048-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:647f2935cc141706858632d08d3a8c8832ea3d531c87305a6fefa24acf7d6e3b
|
| 3 |
+
size 15776462528
|
llama-30b-instruct-2048-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f64e0a6d0c1750eb1ea5f64a4392e668d6505ac6d85dec8b861528aa4e31a11
|
| 3 |
+
size 14064113344
|
llama-30b-instruct-2048-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14cf6f82d2002f219c68d5244b82c6ad96ae5e9165840a531d527591b117432d
|
| 3 |
+
size 18355968704
|
llama-30b-instruct-2048-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cc2f4e634b2be4629da4b4da55ac06b10a734644ee8ec71a891ab49148565e2
|
| 3 |
+
size 19621141184
|
llama-30b-instruct-2048-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cabca166855551664d3b1bf3e7cea40c0ec451a6828c1653d9f42be2d8b9bbd3
|
| 3 |
+
size 18482485952
|
llama-30b-instruct-2048-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b7a8ae3f9b70cabc4efb727cdfc2e31ab53272769c0b683c3cd3835c537a19e
|
| 3 |
+
size 22395361984
|
llama-30b-instruct-2048-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b76a8ff9b99a5d49944276a0dca15e2e8205409a2fcdc0829d65dc269a5a204
|
| 3 |
+
size 23047117504
|
llama-30b-instruct-2048-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc486173aaf35613d0d1f71e616a47a96683c0f7de23fbe743eb16409f43ee8e
|
| 3 |
+
size 22395361984
|
llama-30b-instruct-2048-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32d844f2a9034865d0fddac379078838429ff19cf74bea59ecff1dfbe1ee9230
|
| 3 |
+
size 26687217344
|
llama-30b-instruct-2048-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02f8f5a922b9db8d52a43d676713fd7fcb3fa2c3baedd7aa269a2c73db41469f
|
| 3 |
+
size 34565125824
|