File size: 2,098 Bytes
84ae079
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
language:
- en
tags:
- code
- cybersecurity
- penetration testing
- hacking
- code
- uncensored
datasets:
- mlabonne/orpo-dpo-mix-40k
---
# Prox-Llama-3-8B-abliterated-orpo

By [OpenVoid](https://openvoid.ai)

<img src="https://cdn.openvoid.ai/images/prox-llama3.png" width="400" />

## Model Description

Prox-Llama-3-8B is a uncensored fine-tune of Meta-Llama-3-8B-Instruct, tailored for specialized applications in code generation and cybersecurity.

## Intended Uses & Limitations

Designed for tasks related to hacking and coding:

- Code generation
- Code explanation and documentation
- Answering questions on hacking techniques and cybersecurity
- Providing coding project insights

Review and verify outputs carefully, especially for critical applications. Expert validation is recommended to avoid biased or inconsistent content. Use responsibly and ethically, complying with applicable laws and regulations to prevent misuse for malicious purposes.

## Training Data

The model was fine-tuned on a proprietary dataset from OpenVoid, featuring high-quality text data related to coding, cybersecurity, and hacking. Extensive filtering and preprocessing ensured data quality and relevance.

## Evaluation

- **HumanEval v1.0**: pass@1: 0.537
- **EvalPlus v1.1**: pass@1: 0.482

## How to Use the Model

### Using Transformers

Example of using Prox-Llama-3-8B with the Transformers library:

```python
import transformers
import torch

model_id = "openvoid/Prox-Llama-3-8B-abliterated-orpo"

pipeline = transformers.pipeline(
    "text-generation",
    model=model_id,
    model_kwargs={"torch_dtype": torch.bfloat16},
    device_map="auto",
)

messages = [
    {"role": "system", "content": "You are Prox."},
    {"role": "user", "content": "Who are you?"},
]

terminators = [
    pipeline.tokenizer.eos_token_id,
    pipeline.tokenizer.convert_tokens_to_ids("<|eot_id|>")
]

outputs = pipeline(
    messages,
    max_new_tokens=256,
    eos_token_id=terminators,
    do_sample=True,
    temperature=0.6,
    top_p=0.9,
)
print(outputs[0]["generated_text"][-1])
```