How to use from
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 openvoid/Prox-Llama-3-8B 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 openvoid/Prox-Llama-3-8B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required
# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for openvoid/Prox-Llama-3-8B to start chatting
Load model with FastModel
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
    model_name="openvoid/Prox-Llama-3-8B",
    max_seq_length=2048,
)
Quick Links

Prox-Llama-3-8B

By OpenVoid

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.561
  • EvalPlus v1.1: pass@1: 0.500
  • AGIEval: 40.74
  • GPT4All: 70.17
  • TruthfulQA: 51.15
  • Bigbench: 44.12
  • Average: 51.55

How to Use the Model

Using Transformers

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

import transformers
import torch

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

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])

Downloads last month
12
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for openvoid/Prox-Llama-3-8B

Quantizations
2 models