llm.create_chat_completion(
messages = "\"The tower is 324 metres (1,063 ft) tall, about the same height as an 81-storey building, and the tallest structure in Paris. Its base is square, measuring 125 metres (410 ft) on each side. During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest man-made structure in the world, a title it held for 41 years until the Chrysler Building in New York City was finished in 1930. It was the first structure to reach a height of 300 metres. Due to the addition of a broadcasting aerial at the top of the tower in 1957, it is now taller than the Chrysler Building by 5.2 metres (17 ft). Excluding transmitters, the Eiffel Tower is the second tallest free-standing structure in France after the Millau Viaduct.\""
)
DISLab/SummLlama3.1-8B - GGUF
This repo contains GGUF format model files for DISLab/SummLlama3.1-8B.
The files were quantized using machines provided by TensorBlock, and they are compatible with llama.cpp as of commit b4242.
Our projects
| Forge | |
|---|---|
|
|
| An OpenAI-compatible multi-provider routing layer. | |
| ๐ Try it now! ๐ | |
| Awesome MCP Servers | TensorBlock Studio |
![]() |
![]() |
| A comprehensive collection of Model Context Protocol (MCP) servers. | A lightweight, open, and extensible multi-LLM interaction studio. |
| ๐ See what we built ๐ | ๐ See what we built ๐ |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>
Cutting Knowledge Date: December 2023
Today Date: 26 Jul 2024
{system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
{prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
Model file specification
| Filename | Quant type | File Size | Description |
|---|---|---|---|
| SummLlama3.1-8B-Q2_K.gguf | Q2_K | 3.179 GB | smallest, significant quality loss - not recommended for most purposes |
| SummLlama3.1-8B-Q3_K_S.gguf | Q3_K_S | 3.665 GB | very small, high quality loss |
| SummLlama3.1-8B-Q3_K_M.gguf | Q3_K_M | 4.019 GB | very small, high quality loss |
| SummLlama3.1-8B-Q3_K_L.gguf | Q3_K_L | 4.322 GB | small, substantial quality loss |
| SummLlama3.1-8B-Q4_0.gguf | Q4_0 | 4.661 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
| SummLlama3.1-8B-Q4_K_S.gguf | Q4_K_S | 4.693 GB | small, greater quality loss |
| SummLlama3.1-8B-Q4_K_M.gguf | Q4_K_M | 4.921 GB | medium, balanced quality - recommended |
| SummLlama3.1-8B-Q5_0.gguf | Q5_0 | 5.599 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
| SummLlama3.1-8B-Q5_K_S.gguf | Q5_K_S | 5.599 GB | large, low quality loss - recommended |
| SummLlama3.1-8B-Q5_K_M.gguf | Q5_K_M | 5.733 GB | large, very low quality loss - recommended |
| SummLlama3.1-8B-Q6_K.gguf | Q6_K | 6.596 GB | very large, extremely low quality loss |
| SummLlama3.1-8B-Q8_0.gguf | Q8_0 | 8.541 GB | very large, extremely low quality loss - not recommended |
Downloading instruction
Command line
Firstly, install Huggingface Client
pip install -U "huggingface_hub[cli]"
Then, downoad the individual model file the a local directory
huggingface-cli download tensorblock/SummLlama3.1-8B-GGUF --include "SummLlama3.1-8B-Q2_K.gguf" --local-dir MY_LOCAL_DIR
If you wanna download multiple model files with a pattern (e.g., *Q4_K*gguf), you can try:
huggingface-cli download tensorblock/SummLlama3.1-8B-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
- Downloads last month
- 34
Hardware compatibility
Log In to add your hardware
2-bit
3-bit
Model tree for tensorblock/SummLlama3.1-8B-GGUF
Base model
meta-llama/Llama-3.1-8B Finetuned
meta-llama/Llama-3.1-8B-Instruct Finetuned
DISLab/SummLlama3.1-8B


# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/SummLlama3.1-8B-GGUF", filename="", )