File size: 8,601 Bytes
aa5bb36 5911fb2 aa5bb36 d465495 aa5bb36 29b5d2f aa5bb36 29b5d2f aa5bb36 d465495 aa5bb36 d465495 5911fb2 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 5911fb2 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 d465495 aa5bb36 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | ---
license: llama3.1
datasets:
- newmindai/EuroHPC-Legal
language:
- tr
- en
base_model:
- meta-llama/Llama-3.1-8B-Instruct
tags:
- EuroHPC
- Karolina
- Axolotl
- Unsloth
---
<div style="display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; align-items: flex-start;">
<div style="padding: 10px; border-radius: 8px; background-color: #000;
color-scheme: light dark; margin-top: 40px;">
<img
src="https://cdn-uploads.huggingface.co/production/uploads/683d4880e639f8d647355997/iA0QsWk-k-fQ7CCt65znl.png"
style="width: 100%; max-width: 250px; height: 40px;
filter: invert(0) brightness(1) contrast(1);" />
</div>
<img src="https://cdn-uploads.huggingface.co/production/uploads/683d4880e639f8d647355997/mqbOdFfrC7KjDZbQlLFFj.png"
style="width: 100%; max-width: 300px; height: auto;" />
<img
src="https://cdn-uploads.huggingface.co/production/uploads/683d4880e639f8d647355997/VGnh14pYg-SXSaEt640qz.png"
style="width: 100%; max-width: 150px; height: 100px; margin-top: 35px;" />
</div>
## Model Card
This document describes a parameter-efficient fine-tuning setup using LoRA on the EuroHPC Karolina system. Axolotl provides flexible orchestration and Unsloth supplies optimized kernels for high-throughput training on the newmindai/EuroHPC-Legal dataset. This model is fine-tuned using Parameter-Efficient Fine-Tuning (PEFT) with LoRA (Low-Rank Adaptation) on the EuroHPC dataset, specifically the kvkk subset. The fine-tuning leverages the Axolotl framework for orchestration and Unsloth library for optimized training kernels.
### Hyperparameters
* **LoRA Rank**: 16
* **LoRA Alpha**: 32
* **LoRA Dropout**: 0.05
* **Learning Rate**: 3×10⁻⁵ with cosine scheduling
* **Training Epochs**: 3 per domain
* **Batch Size**: Optimized for A100 memory capacity
### Architecture
* **Base Model**: Llama-3.1-8B-Instruct (Meta)
* **Fine-tuning Method**: LoRA (Low-Rank Adaptation)
* **Parameter Efficiency**: Only trainable LoRA parameters, frozen base model
* **Model Size**: 8B parameters (base) + LoRA adapters
## Hardware and Software
* **Orchestration**: [Axolotl framework](https://axolotl.ai/)
* **Acceleration**: [Unsloth library](https://unsloth.ai/)
* **Backend**: PyTorch with CUDA support
* **System**: EuroHPC Karolina supercomputer
* **GPUs**: NVIDIA A100 (8 × 40 GB per node, 320 GB HBM2 total)
* **Utilization**: 85–90% GPU and memory efficiency
* **Total Compute**: ~600 GPU hours
## Data
### Input Format
The dataset follows the **Alpaca format** with three key fields:
```json
{
"instruction": "Task description or question",
"input": "Additional context or input data",
"output": "Expected response or answer"
}
```
**Dataset**: `newmindai/EuroHPC-Legal` (kvkk subset)
## How to Use
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import PeftModel
# Load base model and tokenizer
base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")
# Load LoRA adapter
model = PeftModel.from_pretrained(base_model, "newmindai/Llama-3.1-8B-Instruct-kvkk-alpaca")
# Format input according to Alpaca format
def format_prompt(instruction, input_text=""):
if input_text:
return f"### Instruction:\n{instruction}\n\n### Input:\n{input_text}\n\n### Response:\n"
else:
return f"### Instruction:\n{instruction}\n\n### Response:\n"
# Example usage
prompt = format_prompt("Explain the benefits of regular exercise")
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
```
## Acknowledgments
This research was supported by the EuroHPC Joint Undertaking (EuroHPC JU) under the Benchmark Access
grant agreement No EHPC-BEN-2024B11-003. The authors gratefully acknowledge the computational resources
provided by the IT4Innovations National Supercomputing Center (Czech Republic) on the Karolina supercomputer,
made available through the EuroHPC JU.
## Citation
```bibtex
@article{newmind2025,
title={Tailoring AI for Turkish Law: Domain-Specific Fine-Tuning of Small Language Models for Legal Expertise},
author={New Mind AI Team},
journal={Procedia Computer Science},
year={2025},
volume={239},
doi={10.1016/j.procs.2025.08.239},
note={Available online 23 September 2025, Version of Record 23 September 2025}
}
```---
license: llama3.1
datasets:
- newmindai/Euro_HPC
language:
- tr
- en
base_model:
- meta-llama/Llama-3.1-8B-Instruct
tags:
- EuroHPC
- Karolina
- Axolotl
- Unsloth
---
<div style="display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; align-items: flex-start;">
<img src="https://cdn-uploads.huggingface.co/production/uploads/683d4880e639f8d647355997/mqbOdFfrC7KjDZbQlLFFj.png"
style="width: 100%; max-width: 300px; height: auto;" />
<img src="https://cdn-uploads.huggingface.co/production/uploads/683d4880e639f8d647355997/VGnh14pYg-SXSaEt640qz.png"
style="width: 100%; max-width: 150px; height: auto;" />
</div>
## Model Card
This document describes a parameter-efficient fine-tuning setup using LoRA on the EuroHPC Karolina system. Axolotl provides flexible orchestration and Unsloth supplies optimized kernels for high-throughput training on the Euro_HPC dataset. This model is fine-tuned using Parameter-Efficient Fine-Tuning (PEFT) with LoRA (Low-Rank Adaptation) on the EuroHPC dataset, specifically the kvkk subset. The fine-tuning leverages the Axolotl framework for orchestration and Unsloth library for optimized training kernels.
### Hyperparameters
* **LoRA Rank**: 16
* **LoRA Alpha**: 32
* **LoRA Dropout**: 0.05
* **Learning Rate**: 3×10⁻⁵ with cosine scheduling
* **Training Epochs**: 3 per domain
* **Batch Size**: Optimized for A100 memory capacity
### Architecture
* **Base Model**: Llama-3.1-8B-Instruct (Meta)
* **Fine-tuning Method**: LoRA (Low-Rank Adaptation)
* **Parameter Efficiency**: Only trainable LoRA parameters, frozen base model
* **Model Size**: 8B parameters (base) + LoRA adapters
## Hardware and Software
* **Orchestration**: [Axolotl framework](https://axolotl.ai/)
* **Acceleration**: [Unsloth library](https://unsloth.ai/)
* **Backend**: PyTorch with CUDA support
* **System**: EuroHPC Karolina supercomputer
* **GPUs**: NVIDIA A100 (8 × 40 GB per node, 320 GB HBM2 total)
* **Utilization**: 85–90% GPU and memory efficiency
* **Total Compute**: ~600 GPU hours
## Data
### Input Format
The dataset follows the **Alpaca format** with three key fields:
```json
{
"instruction": "Task description or question",
"input": "Additional context or input data",
"output": "Expected response or answer"
}
```
**Dataset**: `newmindai/Euro_HPC` (kvkk subset)
## How to Use
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import PeftModel
# Load base model and tokenizer
base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")
# Load LoRA adapter
model = PeftModel.from_pretrained(base_model, "newmindai/Llama-3.1-8B-Instruct-kvkk-alpaca")
# Format input according to Alpaca format
def format_prompt(instruction, input_text=""):
if input_text:
return f"### Instruction:\n{instruction}\n\n### Input:\n{input_text}\n\n### Response:\n"
else:
return f"### Instruction:\n{instruction}\n\n### Response:\n"
# Example usage
prompt = format_prompt("Explain the benefits of regular exercise")
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
```
## Acknowledgments
This research was supported by the EuroHPC Joint Undertaking (EuroHPC JU) under the Benchmark Access
grant agreement No EHPC-BEN-2024B11-003. The authors gratefully acknowledge the computational resources
provided by the IT4Innovations National Supercomputing Center (Czech Republic) on the Karolina supercomputer,
made available through the EuroHPC JU.
## Citation
```bibtex
@article{newmind2025,
title={Tailoring AI for Turkish Law: Domain-Specific Fine-Tuning of Small Language Models for Legal Expertise},
author={New Mind AI Team},
journal={Procedia Computer Science},
year={2025},
volume={239},
doi={10.1016/j.procs.2025.08.239},
note={Available online 23 September 2025, Version of Record 23 September 2025}
}
``` |