File size: 548 Bytes
410f4b2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
- en
license: llama2
tags:
- arcane
- lora
- mental-health
- peft
pipeline_tag: text-generation
---

# Arcane-33B-LoRA

**Arcane-33B-LoRA** is a parameter-efficient fine-tuning (PEFT) adapter module providing high-precision mental health analysis and explanation generation.

## Usage

```python
from peft import AutoPeftModelForCausalLM
from transformers import AutoTokenizer

model_id = "ar3xop/arcane-33b-lora"
peft_model = AutoPeftModelForCausalLM.from_pretrained(model_id)
tokenizer = AutoTokenizer.from_pretrained(model_id)
```