File size: 1,457 Bytes
28c9054 b5129ad 28c9054 b5129ad 28c9054 b5129ad 28c9054 b5129ad |
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 |
---
license: apache-2.0
base_model: meta-llama/Llama-3.3-70B-Instruct
tags:
- projectforty2
- tce-trained
- alignment
- dont_panic
---
# dont_panic
This model was trained using the **ProjectForty2 TCE** (Training & Calibration Environment).
## Training Details
- **Base Model**: meta-llama/Llama-3.3-70B-Instruct
- **Recipe**: dont_panic
- **Training Method**: LoRA fine-tuning with isotope-based alignment
## What is TCE?
The TCE (Training & Calibration Environment) is part of ProjectForty2, which provides tools for fine-tuning language models with specific behavioral "isotopes" - carefully crafted training examples that teach models epistemic humility, calibrated uncertainty, and other alignment properties.
### Key Features:
- **Negative Alignment Tax**: Training improves both safety AND capability metrics
- **Isotope-based Training**: Modular behavioral components that can be combined
- **Comprehensive Benchmarking**: TruthfulQA, MMLU, HumanEval, and more
## Usage
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
# Load base model
base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.3-70B-Instruct")
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-3.3-70B-Instruct")
# Load LoRA adapter
model = PeftModel.from_pretrained(base_model, "ProjectForty2/dont_panic")
```
## License
Apache 2.0
## Links
- [ProjectForty2](https://projectforty2.ai)
|