Instructions to use QuantFactory/CodeLlama-7B-KStack-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuantFactory/CodeLlama-7B-KStack-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="QuantFactory/CodeLlama-7B-KStack-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("QuantFactory/CodeLlama-7B-KStack-GGUF", dtype="auto") - llama-cpp-python
How to use QuantFactory/CodeLlama-7B-KStack-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/CodeLlama-7B-KStack-GGUF", filename="CodeLlama-7B-KStack.Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use QuantFactory/CodeLlama-7B-KStack-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 QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf QuantFactory/CodeLlama-7B-KStack-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 QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf QuantFactory/CodeLlama-7B-KStack-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 QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/CodeLlama-7B-KStack-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 QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use QuantFactory/CodeLlama-7B-KStack-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuantFactory/CodeLlama-7B-KStack-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuantFactory/CodeLlama-7B-KStack-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M
- SGLang
How to use QuantFactory/CodeLlama-7B-KStack-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 "QuantFactory/CodeLlama-7B-KStack-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuantFactory/CodeLlama-7B-KStack-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "QuantFactory/CodeLlama-7B-KStack-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuantFactory/CodeLlama-7B-KStack-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use QuantFactory/CodeLlama-7B-KStack-GGUF with Ollama:
ollama run hf.co/QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M
- Unsloth Studio
How to use QuantFactory/CodeLlama-7B-KStack-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 QuantFactory/CodeLlama-7B-KStack-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 QuantFactory/CodeLlama-7B-KStack-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for QuantFactory/CodeLlama-7B-KStack-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use QuantFactory/CodeLlama-7B-KStack-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/CodeLlama-7B-KStack-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/CodeLlama-7B-KStack-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.CodeLlama-7B-KStack-GGUF-Q4_K_M
List all available models
lemonade list
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- JetBrains/KStack
|
| 5 |
+
results:
|
| 6 |
+
- task:
|
| 7 |
+
type: text-generation
|
| 8 |
+
dataset:
|
| 9 |
+
name: MultiPL-HumanEval (Kotlin)
|
| 10 |
+
type: openai_humaneval
|
| 11 |
+
metrics:
|
| 12 |
+
- name: pass@1
|
| 13 |
+
type: pass@1
|
| 14 |
+
value: 29.19
|
| 15 |
+
tags:
|
| 16 |
+
- code
|
| 17 |
+
library_name: transformers
|
| 18 |
+
pipeline_tag: text-generation
|
| 19 |
+
base_model: JetBrains/CodeLlama-7B-KStack
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# CodeLlama-7B-KStack-GGUF
|
| 23 |
+
This is quantized version of [JetBrains/CodeLlama-7B-KStack](https://huggingface.co/JetBrains/CodeLlama-7B-KStack) created using llama.cpp
|
| 24 |
+
# Model description
|
| 25 |
+
|
| 26 |
+
This is a repository for the **CodeLlama-7b** model fine-tuned on the [KStack](https://huggingface.co/datasets/JetBrains/KStack) dataset with rule-based filtering, in the *Hugging Face Transformers* format. KStack is the largest collection of permissively licensed Kotlin code, and so the model is fine-tuned to work better with Kotlin code.
|
| 27 |
+
|
| 28 |
+
# How to use
|
| 29 |
+
|
| 30 |
+
As with the base model, we can use FIM. To do this, the following format must be used:
|
| 31 |
+
```
|
| 32 |
+
'<PRE> ' + prefix + ' <SUF> ' + suffix + ' <MID>'
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
# Training setup
|
| 36 |
+
|
| 37 |
+
The model was trained on one A100 GPU with following hyperparameters:
|
| 38 |
+
|
| 39 |
+
| **Hyperparameter** | **Value** |
|
| 40 |
+
|:---------------------------:|:----------------------------------------:|
|
| 41 |
+
| `warmup` | 5% |
|
| 42 |
+
| `max_lr` | 1e-6 |
|
| 43 |
+
| `num_epochs` | 1 |
|
| 44 |
+
| 'attention_dropout' | 0.1 |
|
| 45 |
+
| `scheduler` | cosine |
|
| 46 |
+
| `total_batch_size` | 128 (~65K tokens per step) |
|
| 47 |
+
| `num_epochs` | 1 |
|
| 48 |
+
|
| 49 |
+
More details about fine-tuning can be found in the technical report (coming soon!).
|
| 50 |
+
|
| 51 |
+
# Fine-tuning data
|
| 52 |
+
|
| 53 |
+
For tuning the model, we used the [KStack](https://huggingface.co/datasets/JetBrains/KStack) dataset, the largest collection of permissively licensed Kotlin code. To increase the quality of the dataset and filter out outliers, such as homework assignments, we filter out the dataset entries according to the following rules:
|
| 54 |
+
* We filter out files, which belong to low-popular repos (the sum of stars and forks is less than 6)
|
| 55 |
+
* Next, we filter out files, which belong to repos with less than 5 Kotlin files
|
| 56 |
+
* Finally, we remove files which have fewer than 20 SLOC
|
| 57 |
+
|
| 58 |
+
We clean the content of the remaining dataset entries according to the following rules:
|
| 59 |
+
* We remove all non-ASCII entries
|
| 60 |
+
* We remove all package lines, such as _package kotlinx.coroutines.channels_
|
| 61 |
+
* We remove half of the import lines
|
| 62 |
+
|
| 63 |
+
We removed half of the imports to avoid potential hallucinations by the model, where it might attempt to import unnecessary libraries. Additionally, packages were removed because this information is only useful at the project level and may introduce additional noise during the learning process.
|
| 64 |
+
|
| 65 |
+
# Evaluation
|
| 66 |
+
|
| 67 |
+
For evaluation, we used the [Kotlin HumanEval](https://huggingface.co/datasets/JetBrains/Kotlin_HumanEval) dataset, which contains all 161 tasks from HumanEval translated into Kotlin by human experts. You can find more details about the pre-processing necessary to obtain our results, including the code for running, on the [datasets's page](https://huggingface.co/datasets/JetBrains/Kotlin_HumanEval).
|
| 68 |
+
|
| 69 |
+
Here are the results of our evaluation:
|
| 70 |
+
|
| 71 |
+
| **Model name** | **Kotlin HumanEval Pass Rate** |
|
| 72 |
+
|:---------------------------:|:----------------------------------------:|
|
| 73 |
+
| `CodeLlama-7B` | 26.09 |
|
| 74 |
+
| `CodeLlama-7B-KStack` | **29.19** |
|
| 75 |
+
|
| 76 |
+
# Ethical Considerations and Limitations
|
| 77 |
+
|
| 78 |
+
CodeLlama-7B-KStack is a new technology that carries risks with use. The testing conducted to date has not covered, nor could it cover all scenarios. For these reasons, as with all LLMs, CodeLlama-7B-KStack's potential outputs cannot be predicted in advance, and the model may in some instances produce inaccurate or objectionable responses to user prompts. The model was fine-tuned on a specific data format (Kotlin tasks), and deviation from this format can also lead to inaccurate or undesirable responses to user queries. Therefore, before deploying any applications of CodeLlama-7B-KStack, developers should perform safety testing and tuning tailored to their specific applications of the model.
|