Instructions to use bartowski/granite-34b-code-instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bartowski/granite-34b-code-instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bartowski/granite-34b-code-instruct-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bartowski/granite-34b-code-instruct-GGUF", dtype="auto") - llama-cpp-python
How to use bartowski/granite-34b-code-instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/granite-34b-code-instruct-GGUF", filename="granite-34b-code-instruct-IQ1_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use bartowski/granite-34b-code-instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartowski/granite-34b-code-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartowski/granite-34b-code-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/granite-34b-code-instruct-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 bartowski/granite-34b-code-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/granite-34b-code-instruct-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 bartowski/granite-34b-code-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/granite-34b-code-instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/granite-34b-code-instruct-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": "bartowski/granite-34b-code-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
- SGLang
How to use bartowski/granite-34b-code-instruct-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "bartowski/granite-34b-code-instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/granite-34b-code-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "bartowski/granite-34b-code-instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/granite-34b-code-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use bartowski/granite-34b-code-instruct-GGUF with Ollama:
ollama run hf.co/bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
- Unsloth Studio new
How to use bartowski/granite-34b-code-instruct-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 bartowski/granite-34b-code-instruct-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 bartowski/granite-34b-code-instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/granite-34b-code-instruct-GGUF to start chatting
- Docker Model Runner
How to use bartowski/granite-34b-code-instruct-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
- Lemonade
How to use bartowski/granite-34b-code-instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/granite-34b-code-instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.granite-34b-code-instruct-GGUF-Q4_K_M
List all available models
lemonade list
Llamacpp quants
Browse files- .gitattributes +28 -0
- README.md +304 -0
- granite-34b-code-instruct-IQ1_M.gguf +3 -0
- granite-34b-code-instruct-IQ1_S.gguf +3 -0
- granite-34b-code-instruct-IQ2_M.gguf +3 -0
- granite-34b-code-instruct-IQ2_S.gguf +3 -0
- granite-34b-code-instruct-IQ2_XS.gguf +3 -0
- granite-34b-code-instruct-IQ2_XXS.gguf +3 -0
- granite-34b-code-instruct-IQ3_M.gguf +3 -0
- granite-34b-code-instruct-IQ3_S.gguf +3 -0
- granite-34b-code-instruct-IQ3_XS.gguf +3 -0
- granite-34b-code-instruct-IQ3_XXS.gguf +3 -0
- granite-34b-code-instruct-IQ4_NL.gguf +3 -0
- granite-34b-code-instruct-IQ4_XS.gguf +3 -0
- granite-34b-code-instruct-Q2_K.gguf +3 -0
- granite-34b-code-instruct-Q3_K_L.gguf +3 -0
- granite-34b-code-instruct-Q3_K_M.gguf +3 -0
- granite-34b-code-instruct-Q3_K_S.gguf +3 -0
- granite-34b-code-instruct-Q4_K_M.gguf +3 -0
- granite-34b-code-instruct-Q4_K_S.gguf +3 -0
- granite-34b-code-instruct-Q5_K_M.gguf +3 -0
- granite-34b-code-instruct-Q5_K_S.gguf +3 -0
- granite-34b-code-instruct-Q6_K.gguf +3 -0
- granite-34b-code-instruct-Q8_0.gguf +3 -0
- granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00001-of-00005.gguf +3 -0
- granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00002-of-00005.gguf +3 -0
- granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00003-of-00005.gguf +3 -0
- granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00004-of-00005.gguf +3 -0
- granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00005-of-00005.gguf +3 -0
- granite-34b-code-instruct.imatrix +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,31 @@ 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 |
+
granite-34b-code-instruct-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
granite-34b-code-instruct-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
granite-34b-code-instruct-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
granite-34b-code-instruct-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
granite-34b-code-instruct-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
granite-34b-code-instruct-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
granite-34b-code-instruct-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
granite-34b-code-instruct-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
granite-34b-code-instruct-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
granite-34b-code-instruct-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
granite-34b-code-instruct-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
granite-34b-code-instruct-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
granite-34b-code-instruct-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
granite-34b-code-instruct-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
granite-34b-code-instruct-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
granite-34b-code-instruct-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
granite-34b-code-instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
granite-34b-code-instruct-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
granite-34b-code-instruct-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
granite-34b-code-instruct-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
granite-34b-code-instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
granite-34b-code-instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
granite-34b-code-instruct.imatrix filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,304 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: text-generation
|
| 3 |
+
base_model: ibm-granite/granite-34b-code-base
|
| 4 |
+
inference: true
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
datasets:
|
| 7 |
+
- bigcode/commitpackft
|
| 8 |
+
- TIGER-Lab/MathInstruct
|
| 9 |
+
- meta-math/MetaMathQA
|
| 10 |
+
- glaiveai/glaive-code-assistant-v3
|
| 11 |
+
- glaive-function-calling-v2
|
| 12 |
+
- bugdaryan/sql-create-context-instruction
|
| 13 |
+
- garage-bAInd/Open-Platypus
|
| 14 |
+
- nvidia/HelpSteer
|
| 15 |
+
metrics:
|
| 16 |
+
- code_eval
|
| 17 |
+
library_name: transformers
|
| 18 |
+
tags:
|
| 19 |
+
- code
|
| 20 |
+
- granite
|
| 21 |
+
model-index:
|
| 22 |
+
- name: granite-34b-code-instruct
|
| 23 |
+
results:
|
| 24 |
+
- task:
|
| 25 |
+
type: text-generation
|
| 26 |
+
dataset:
|
| 27 |
+
type: bigcode/humanevalpack
|
| 28 |
+
name: HumanEvalSynthesis(Python)
|
| 29 |
+
metrics:
|
| 30 |
+
- name: pass@1
|
| 31 |
+
type: pass@1
|
| 32 |
+
value: 62.2
|
| 33 |
+
veriefied: false
|
| 34 |
+
- task:
|
| 35 |
+
type: text-generation
|
| 36 |
+
dataset:
|
| 37 |
+
type: bigcode/humanevalpack
|
| 38 |
+
name: HumanEvalSynthesis(JavaScript)
|
| 39 |
+
metrics:
|
| 40 |
+
- name: pass@1
|
| 41 |
+
type: pass@1
|
| 42 |
+
value: 56.7
|
| 43 |
+
veriefied: false
|
| 44 |
+
- task:
|
| 45 |
+
type: text-generation
|
| 46 |
+
dataset:
|
| 47 |
+
type: bigcode/humanevalpack
|
| 48 |
+
name: HumanEvalSynthesis(Java)
|
| 49 |
+
metrics:
|
| 50 |
+
- name: pass@1
|
| 51 |
+
type: pass@1
|
| 52 |
+
value: 62.8
|
| 53 |
+
veriefied: false
|
| 54 |
+
- task:
|
| 55 |
+
type: text-generation
|
| 56 |
+
dataset:
|
| 57 |
+
type: bigcode/humanevalpack
|
| 58 |
+
name: HumanEvalSynthesis(Go)
|
| 59 |
+
metrics:
|
| 60 |
+
- name: pass@1
|
| 61 |
+
type: pass@1
|
| 62 |
+
value: 47.6
|
| 63 |
+
veriefied: false
|
| 64 |
+
- task:
|
| 65 |
+
type: text-generation
|
| 66 |
+
dataset:
|
| 67 |
+
type: bigcode/humanevalpack
|
| 68 |
+
name: HumanEvalSynthesis(C++)
|
| 69 |
+
metrics:
|
| 70 |
+
- name: pass@1
|
| 71 |
+
type: pass@1
|
| 72 |
+
value: 57.9
|
| 73 |
+
veriefied: false
|
| 74 |
+
- task:
|
| 75 |
+
type: text-generation
|
| 76 |
+
dataset:
|
| 77 |
+
type: bigcode/humanevalpack
|
| 78 |
+
name: HumanEvalSynthesis(Rust)
|
| 79 |
+
metrics:
|
| 80 |
+
- name: pass@1
|
| 81 |
+
type: pass@1
|
| 82 |
+
value: 41.5
|
| 83 |
+
veriefied: false
|
| 84 |
+
- task:
|
| 85 |
+
type: text-generation
|
| 86 |
+
dataset:
|
| 87 |
+
type: bigcode/humanevalpack
|
| 88 |
+
name: HumanEvalExplain(Python)
|
| 89 |
+
metrics:
|
| 90 |
+
- name: pass@1
|
| 91 |
+
type: pass@1
|
| 92 |
+
value: 53.0
|
| 93 |
+
veriefied: false
|
| 94 |
+
- task:
|
| 95 |
+
type: text-generation
|
| 96 |
+
dataset:
|
| 97 |
+
type: bigcode/humanevalpack
|
| 98 |
+
name: HumanEvalExplain(JavaScript)
|
| 99 |
+
metrics:
|
| 100 |
+
- name: pass@1
|
| 101 |
+
type: pass@1
|
| 102 |
+
value: 45.1
|
| 103 |
+
veriefied: false
|
| 104 |
+
- task:
|
| 105 |
+
type: text-generation
|
| 106 |
+
dataset:
|
| 107 |
+
type: bigcode/humanevalpack
|
| 108 |
+
name: HumanEvalExplain(Java)
|
| 109 |
+
metrics:
|
| 110 |
+
- name: pass@1
|
| 111 |
+
type: pass@1
|
| 112 |
+
value: 50.6
|
| 113 |
+
veriefied: false
|
| 114 |
+
- task:
|
| 115 |
+
type: text-generation
|
| 116 |
+
dataset:
|
| 117 |
+
type: bigcode/humanevalpack
|
| 118 |
+
name: HumanEvalExplain(Go)
|
| 119 |
+
metrics:
|
| 120 |
+
- name: pass@1
|
| 121 |
+
type: pass@1
|
| 122 |
+
value: 36.0
|
| 123 |
+
veriefied: false
|
| 124 |
+
- task:
|
| 125 |
+
type: text-generation
|
| 126 |
+
dataset:
|
| 127 |
+
type: bigcode/humanevalpack
|
| 128 |
+
name: HumanEvalExplain(C++)
|
| 129 |
+
metrics:
|
| 130 |
+
- name: pass@1
|
| 131 |
+
type: pass@1
|
| 132 |
+
value: 42.7
|
| 133 |
+
veriefied: false
|
| 134 |
+
- task:
|
| 135 |
+
type: text-generation
|
| 136 |
+
dataset:
|
| 137 |
+
type: bigcode/humanevalpack
|
| 138 |
+
name: HumanEvalExplain(Rust)
|
| 139 |
+
metrics:
|
| 140 |
+
- name: pass@1
|
| 141 |
+
type: pass@1
|
| 142 |
+
value: 23.8
|
| 143 |
+
veriefied: false
|
| 144 |
+
- task:
|
| 145 |
+
type: text-generation
|
| 146 |
+
dataset:
|
| 147 |
+
type: bigcode/humanevalpack
|
| 148 |
+
name: HumanEvalFix(Python)
|
| 149 |
+
metrics:
|
| 150 |
+
- name: pass@1
|
| 151 |
+
type: pass@1
|
| 152 |
+
value: 54.9
|
| 153 |
+
veriefied: false
|
| 154 |
+
- task:
|
| 155 |
+
type: text-generation
|
| 156 |
+
dataset:
|
| 157 |
+
type: bigcode/humanevalpack
|
| 158 |
+
name: HumanEvalFix(JavaScript)
|
| 159 |
+
metrics:
|
| 160 |
+
- name: pass@1
|
| 161 |
+
type: pass@1
|
| 162 |
+
value: 47.6
|
| 163 |
+
veriefied: false
|
| 164 |
+
- task:
|
| 165 |
+
type: text-generation
|
| 166 |
+
dataset:
|
| 167 |
+
type: bigcode/humanevalpack
|
| 168 |
+
name: HumanEvalFix(Java)
|
| 169 |
+
metrics:
|
| 170 |
+
- name: pass@1
|
| 171 |
+
type: pass@1
|
| 172 |
+
value: 55.5
|
| 173 |
+
veriefied: false
|
| 174 |
+
- task:
|
| 175 |
+
type: text-generation
|
| 176 |
+
dataset:
|
| 177 |
+
type: bigcode/humanevalpack
|
| 178 |
+
name: HumanEvalFix(Go)
|
| 179 |
+
metrics:
|
| 180 |
+
- name: pass@1
|
| 181 |
+
type: pass@1
|
| 182 |
+
value: 51.2
|
| 183 |
+
veriefied: false
|
| 184 |
+
- task:
|
| 185 |
+
type: text-generation
|
| 186 |
+
dataset:
|
| 187 |
+
type: bigcode/humanevalpack
|
| 188 |
+
name: HumanEvalFix(C++)
|
| 189 |
+
metrics:
|
| 190 |
+
- name: pass@1
|
| 191 |
+
type: pass@1
|
| 192 |
+
value: 47.0
|
| 193 |
+
veriefied: false
|
| 194 |
+
- task:
|
| 195 |
+
type: text-generation
|
| 196 |
+
dataset:
|
| 197 |
+
type: bigcode/humanevalpack
|
| 198 |
+
name: HumanEvalFix(Rust)
|
| 199 |
+
metrics:
|
| 200 |
+
- name: pass@1
|
| 201 |
+
type: pass@1
|
| 202 |
+
value: 45.1
|
| 203 |
+
veriefied: false
|
| 204 |
+
quantized_by: bartowski
|
| 205 |
+
---
|
| 206 |
+
|
| 207 |
+
## Llamacpp imatrix Quantizations of granite-34b-code-instruct
|
| 208 |
+
|
| 209 |
+
Using <a href="https://github.com/ggerganov/llama.cpp/">llama.cpp</a> release <a href="https://github.com/ggerganov/llama.cpp/releases/tag/b2940">b2940</a> for quantization.
|
| 210 |
+
|
| 211 |
+
Original model: https://huggingface.co/ibm-granite/granite-34b-code-instruct
|
| 212 |
+
|
| 213 |
+
All quants made using imatrix option with dataset from [here](https://gist.github.com/bartowski1182/b6ac44691e994344625687afe3263b3a)
|
| 214 |
+
|
| 215 |
+
## Prompt format
|
| 216 |
+
|
| 217 |
+
```
|
| 218 |
+
System:
|
| 219 |
+
{system_prompt}
|
| 220 |
+
|
| 221 |
+
Question:
|
| 222 |
+
{prompt}
|
| 223 |
+
|
| 224 |
+
Answer:
|
| 225 |
+
|
| 226 |
+
|
| 227 |
+
Answer:
|
| 228 |
+
|
| 229 |
+
```
|
| 230 |
+
|
| 231 |
+
## Download a file (not the whole branch) from below:
|
| 232 |
+
|
| 233 |
+
| Filename | Quant type | File Size | Description |
|
| 234 |
+
| -------- | ---------- | --------- | ----------- |
|
| 235 |
+
| [granite-34b-code-instruct-Q8_0.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q8_0.gguf) | Q8_0 | 35.99GB | Extremely high quality, generally unneeded but max available quant. |
|
| 236 |
+
| [granite-34b-code-instruct-Q6_K.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q6_K.gguf) | Q6_K | 27.83GB | Very high quality, near perfect, *recommended*. |
|
| 237 |
+
| [granite-34b-code-instruct-Q5_K_M.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q5_K_M.gguf) | Q5_K_M | 24.74GB | High quality, *recommended*. |
|
| 238 |
+
| [granite-34b-code-instruct-Q5_K_S.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q5_K_S.gguf) | Q5_K_S | 23.40GB | High quality, *recommended*. |
|
| 239 |
+
| [granite-34b-code-instruct-Q4_K_M.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q4_K_M.gguf) | Q4_K_M | 21.38GB | Good quality, uses about 4.83 bits per weight, *recommended*. |
|
| 240 |
+
| [granite-34b-code-instruct-Q4_K_S.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q4_K_S.gguf) | Q4_K_S | 19.44GB | Slightly lower quality with more space savings, *recommended*. |
|
| 241 |
+
| [granite-34b-code-instruct-IQ4_NL.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ4_NL.gguf) | IQ4_NL | 19.23GB | Decent quality, slightly smaller than Q4_K_S with similar performance *recommended*. |
|
| 242 |
+
| [granite-34b-code-instruct-IQ4_XS.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ4_XS.gguf) | IQ4_XS | 18.19GB | Decent quality, smaller than Q4_K_S with similar performance, *recommended*. |
|
| 243 |
+
| [granite-34b-code-instruct-Q3_K_L.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q3_K_L.gguf) | Q3_K_L | 19.54GB | Lower quality but usable, good for low RAM availability. |
|
| 244 |
+
| [granite-34b-code-instruct-Q3_K_M.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q3_K_M.gguf) | Q3_K_M | 17.56GB | Even lower quality. |
|
| 245 |
+
| [granite-34b-code-instruct-IQ3_M.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ3_M.gguf) | IQ3_M | 15.92GB | Medium-low quality, new method with decent performance comparable to Q3_K_M. |
|
| 246 |
+
| [granite-34b-code-instruct-IQ3_S.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ3_S.gguf) | IQ3_S | 14.80GB | Lower quality, new method with decent performance, recommended over Q3_K_S quant, same size with better performance. |
|
| 247 |
+
| [granite-34b-code-instruct-Q3_K_S.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q3_K_S.gguf) | Q3_K_S | 14.80GB | Low quality, not recommended. |
|
| 248 |
+
| [granite-34b-code-instruct-IQ3_XS.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ3_XS.gguf) | IQ3_XS | 14.34GB | Lower quality, new method with decent performance, slightly better than Q3_K_S. |
|
| 249 |
+
| [granite-34b-code-instruct-IQ3_XXS.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ3_XXS.gguf) | IQ3_XXS | 13.35GB | Lower quality, new method with decent performance, comparable to Q3 quants. |
|
| 250 |
+
| [granite-34b-code-instruct-Q2_K.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-Q2_K.gguf) | Q2_K | 13.10GB | Very low quality but surprisingly usable. |
|
| 251 |
+
| [granite-34b-code-instruct-IQ2_M.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ2_M.gguf) | IQ2_M | 11.66GB | Very low quality, uses SOTA techniques to also be surprisingly usable. |
|
| 252 |
+
| [granite-34b-code-instruct-IQ2_S.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ2_S.gguf) | IQ2_S | 10.77GB | Very low quality, uses SOTA techniques to be usable. |
|
| 253 |
+
| [granite-34b-code-instruct-IQ2_XS.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ2_XS.gguf) | IQ2_XS | 10.14GB | Very low quality, uses SOTA techniques to be usable. |
|
| 254 |
+
| [granite-34b-code-instruct-IQ2_XXS.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ2_XXS.gguf) | IQ2_XXS | 9.15GB | Lower quality, uses SOTA techniques to be usable. |
|
| 255 |
+
| [granite-34b-code-instruct-IQ1_M.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ1_M.gguf) | IQ1_M | 8.04GB | Extremely low quality, *not* recommended. |
|
| 256 |
+
| [granite-34b-code-instruct-IQ1_S.gguf](https://huggingface.co/bartowski/granite-34b-code-instruct-GGUF/blob/main/granite-34b-code-instruct-IQ1_S.gguf) | IQ1_S | 7.37GB | Extremely low quality, *not* recommended. |
|
| 257 |
+
|
| 258 |
+
## Downloading using huggingface-cli
|
| 259 |
+
|
| 260 |
+
First, make sure you have hugginface-cli installed:
|
| 261 |
+
|
| 262 |
+
```
|
| 263 |
+
pip install -U "huggingface_hub[cli]"
|
| 264 |
+
```
|
| 265 |
+
|
| 266 |
+
Then, you can target the specific file you want:
|
| 267 |
+
|
| 268 |
+
```
|
| 269 |
+
huggingface-cli download bartowski/granite-34b-code-instruct-GGUF --include "granite-34b-code-instruct-Q4_K_M.gguf" --local-dir ./ --local-dir-use-symlinks False
|
| 270 |
+
```
|
| 271 |
+
|
| 272 |
+
If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
|
| 273 |
+
|
| 274 |
+
```
|
| 275 |
+
huggingface-cli download bartowski/granite-34b-code-instruct-GGUF --include "granite-34b-code-instruct-Q8_0.gguf/*" --local-dir granite-34b-code-instruct-Q8_0 --local-dir-use-symlinks False
|
| 276 |
+
```
|
| 277 |
+
|
| 278 |
+
You can either specify a new local-dir (granite-34b-code-instruct-Q8_0) or download them all in place (./)
|
| 279 |
+
|
| 280 |
+
## Which file should I choose?
|
| 281 |
+
|
| 282 |
+
A great write up with charts showing various performances is provided by Artefact2 [here](https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9)
|
| 283 |
+
|
| 284 |
+
The first thing to figure out is how big a model you can run. To do this, you'll need to figure out how much RAM and/or VRAM you have.
|
| 285 |
+
|
| 286 |
+
If you want your model running as FAST as possible, you'll want to fit the whole thing on your GPU's VRAM. Aim for a quant with a file size 1-2GB smaller than your GPU's total VRAM.
|
| 287 |
+
|
| 288 |
+
If you want the absolute maximum quality, add both your system RAM and your GPU's VRAM together, then similarly grab a quant with a file size 1-2GB Smaller than that total.
|
| 289 |
+
|
| 290 |
+
Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.
|
| 291 |
+
|
| 292 |
+
If you don't want to think too much, grab one of the K-quants. These are in format 'QX_K_X', like Q5_K_M.
|
| 293 |
+
|
| 294 |
+
If you want to get more into the weeds, you can check out this extremely useful feature chart:
|
| 295 |
+
|
| 296 |
+
[llama.cpp feature matrix](https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix)
|
| 297 |
+
|
| 298 |
+
But basically, if you're aiming for below Q4, and you're running cuBLAS (Nvidia) or rocBLAS (AMD), you should look towards the I-quants. These are in format IQX_X, like IQ3_M. These are newer and offer better performance for their size.
|
| 299 |
+
|
| 300 |
+
These I-quants can also be used on CPU and Apple Metal, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.
|
| 301 |
+
|
| 302 |
+
The I-quants are *not* compatible with Vulcan, which is also AMD, so if you have an AMD card double check if you're using the rocBLAS build or the Vulcan build. At the time of writing this, LM Studio has a preview with ROCm support, and other inference engines have specific builds for ROCm.
|
| 303 |
+
|
| 304 |
+
Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
|
granite-34b-code-instruct-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:404773e30975939cb1ba355e39c52ff601f771a246c52d0d096fa892ab459b31
|
| 3 |
+
size 8042989216
|
granite-34b-code-instruct-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03ae22ad6a16c851f2e784ed85733505e254a34e9675e3d7ba5c98391f47a4c3
|
| 3 |
+
size 7377962656
|
granite-34b-code-instruct-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d1854b0438337b48c261f2421e59089758232f95f559b24a3011010b1851bda
|
| 3 |
+
size 11664410272
|
granite-34b-code-instruct-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ad07cc0fdd166cd569bb3121c6748642931d8da47ce5cea9574d65b74709ccf
|
| 3 |
+
size 10777708192
|
granite-34b-code-instruct-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3affaa326c6f5c3ddab1fc091115e68bb50aac31bf9e11687e39b398b3424c95
|
| 3 |
+
size 10141877920
|
granite-34b-code-instruct-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31fdfd968c4cc24250eaebcfb8894bf1c20adba68c31797db32f828f04b9af37
|
| 3 |
+
size 9151366816
|
granite-34b-code-instruct-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2eff1b6922606c055498e904dd709fc894b9ddafe9ae56ff03f79db1d70f96bf
|
| 3 |
+
size 15929329312
|
granite-34b-code-instruct-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:786647511c3152e7f358926a27784311d4b6a2d601d4e3b2f2c859486a43f5ec
|
| 3 |
+
size 14807975584
|
granite-34b-code-instruct-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5fb3e930955290e0a26f0cb5af10e6ccabb9ec1c4b16c276a0f894b16f8ee13f
|
| 3 |
+
size 14340834976
|
granite-34b-code-instruct-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf64e266bfcbcd22c77bf71231c4741ffe5e5dd94bd2297055df0dc87d7c7f4a
|
| 3 |
+
size 13359957664
|
granite-34b-code-instruct-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22ce4160c655e4f986efc0fccd47c19016c39d7f1b92c71a63ca4e2aaf7948e8
|
| 3 |
+
size 19238241952
|
granite-34b-code-instruct-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a59926dc32979a02b7b3c111916c3a0c5a815ab60418e74252a61d456a702960
|
| 3 |
+
size 18195826336
|
granite-34b-code-instruct-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0502f286f50da6e0b15d1d682f479ade1d790dfa69594dcbf680e33c5152641e
|
| 3 |
+
size 13107021472
|
granite-34b-code-instruct-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1993edb7bdf7922b5c2714ef4fbd9e7573883194df38c0100c38be7e7f0bf679
|
| 3 |
+
size 19549669024
|
granite-34b-code-instruct-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17d34e48a609bbda5c00936b34d8901d1701205c66ed3152875976a7633fc2d1
|
| 3 |
+
size 17567860384
|
granite-34b-code-instruct-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:737914adf333689959d27a349c1296b906cf7c2bfd005da0a81120fef65ae32f
|
| 3 |
+
size 14807975584
|
granite-34b-code-instruct-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70747e072433cebd80d939fd0b9a504836bbc6fdb5679348c8a813d08a1d8e3e
|
| 3 |
+
size 21383628448
|
granite-34b-code-instruct-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63e4b84d750da0bf3307b1d6f0c37d3cbc43677fcda983c40f150901e26e7939
|
| 3 |
+
size 19445860000
|
granite-34b-code-instruct-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43fbdb102884b0cc810cd3e7130042d0effc77687cfabe12f6e8c19bc2fabd12
|
| 3 |
+
size 24749852320
|
granite-34b-code-instruct-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b397402dc8b7374890325e3d20c17044c1ba9803902d2582ec2ebea059d655e
|
| 3 |
+
size 23407904416
|
granite-34b-code-instruct-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0f5d5d9e17cda951eb9dff216ce18e1605b199b6c7eb551f3e09c9edbb2b6af
|
| 3 |
+
size 27838170784
|
granite-34b-code-instruct-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b697885658ae4c01aa865ef5f70c301f3c5c0219f3ae87cca486f482cfa403de
|
| 3 |
+
size 35990029984
|
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19388ddad2aa76918071b3af22d346ccbba203e42381808a550175965ca8bf04
|
| 3 |
+
size 32049793248
|
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00002-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8585d0ce8063fd2bbbb30290a3359a8031ae6ac83a758eccecf344608c8510b6
|
| 3 |
+
size 31846771616
|
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00003-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7137532a0767e60280665fe45d039d6fcf03ffcef7bef8eeef29fede0e4d6413
|
| 3 |
+
size 31846771616
|
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00004-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6260c0326efcfd0b6b955242c7f550c246a9b136c43d60f07843f467cd5557e1
|
| 3 |
+
size 31846771616
|
granite-34b-code-instruct-f32.gguf/granite-34b-code-instruct-f32-00005-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:676b90e6d28ffdf311ab9d02d5238fdbaddb7d2f708eaab452916c89633649a2
|
| 3 |
+
size 7274085376
|
granite-34b-code-instruct.imatrix
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98f7cff0d771cc5f8ab2136588cd1fbc2be304014d2e23ebeba065828967e47a
|
| 3 |
+
size 15150879
|