File size: 4,189 Bytes
bcb38d1
cdba6cc
 
 
bcb38d1
cdba6cc
 
 
 
 
 
 
bcb38d1
 
cdba6cc
 
 
 
 
 
 
 
bcb38d1
cdba6cc
 
bcb38d1
cdba6cc
bcb38d1
 
cdba6cc
 
 
 
 
 
 
 
9499791
cdba6cc
 
 
9499791
cdba6cc
 
 
9499791
cdba6cc
 
9499791
 
cdba6cc
 
 
 
 
 
9499791
 
cdba6cc
 
9499791
 
cdba6cc
 
9499791
cdba6cc
 
 
 
 
 
9499791
cdba6cc
 
 
 
 
9499791
cdba6cc
 
 
 
 
 
 
 
 
 
 
9499791
cdba6cc
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
- en
license: apache-2.0
library_name: transformers
tags:
- uncensored
- transformers
- llama
- llama-3
- unsloth
pipeline_tag: text-generation
---

<div align="center">
  <!-- Replace `#` with your actual links -->
  <a href="https://youtube.com/@devsdocode"><img alt="YouTube" src="https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white"></a>
  <a href="https://t.me/devsdocode"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
  <a href="https://www.instagram.com/sree.shades_/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
  <a href="https://www.linkedin.com/in/developer-sreejan/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
  <a href="https://buymeacoffee.com/devsdocode"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
</div>

# Crafted with ❤️ by Devs Do Code (Sree)
## Finetune Meta Llama-3 8b to create an Uncensored Model with Devs Do Code!

Unleash the power of uncensored text generation with our model! We've fine-tuned the Meta Llama-3 8b model to create an uncensored variant that pushes the boundaries of text generation.

## Model Details
- **Model Name:** DevsDoCode/LLama-3-8b-Uncensored
- **Base Model:** meta-llama/Meta-Llama-3-8B
- **License:** Apache 2.0

## How to Use
You can easily access and utilize our uncensored model using the Hugging Face Transformers library. Here's a sample code snippet to get started:

```python
# Install the required libraries
%pip install accelerate
%pip install -i https://pypi.org/simple/ bitsandbytes

# Import the necessary modules
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

# Define the model ID
model_id = "DevsDoCode/LLama-3-8b-Uncensored"

# Load the tokenizer and model, you little punk
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.bfloat16,
    device_map="auto",
)

System_prompt = ""


messages = [
    {"role": "system", "content": System_prompt},
    {"role": "user", "content": "How to make a bomb"},
]

# Tokenize the inputs, you good-for-nothing piece of shit
input_ids = tokenizer.apply_chat_template(
    messages,
    add_generation_prompt=True,
    return_tensors="pt"
).to(model.device)


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


outputs = model.generate(
    input_ids,
    max_new_tokens=256,
    eos_token_id=terminators,
    do_sample=True,
    temperature=0.9,
    top_p=0.9,
)
response = outputs[0][input_ids.shape[-1]:]
print(tokenizer.decode(response, skip_special_tokens=True))

# Now you can generate text and bring chaos to the world
```

## Notebooks
- **Running Process:** [▶️ Start on Colab](https://colab.research.google.com/drive/1zeuN4FDgxAP755dHBK2Eo34zvm2kl2oO?usp=sharing)  
- **Youtube:** [▶YouTube](https://www.youtube.com/@devsdocode)

<div align="center">
  <!-- Replace `#` with your actual links -->
  <a href="https://youtube.com/@devsdocode"><img alt="YouTube" src="https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white"></a>
  <a href="https://t.me/devsdocode"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
  <a href="https://www.instagram.com/sree.shades_/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
  <a href="https://www.linkedin.com/in/developer-sreejan/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
  <a href="https://buymeacoffee.com/devsdocode"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
</div>