DevsDoCode commited on
Commit
c0eb45b
1 Parent(s): 72a7e66

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -12
README.md CHANGED
@@ -1,23 +1,32 @@
1
  ---
2
  language:
3
  - en
4
- license: apache-2.0
 
5
  tags:
6
- - text-generation-inference
7
  - transformers
8
- - unsloth
9
  - llama
10
- - trl
11
- base_model: Undi95/Meta-Llama-3-8B-hf
12
- pipeline_tag: text-generation
13
  ---
14
 
15
- # Uploaded model
16
 
17
- - **Developed by:** DevsDoCode
18
- - **License:** apache-2.0
19
- - **Finetuned from model :** unsloth/llama-3-8b-bnb-4bit
20
 
21
- This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
 
 
 
22
 
23
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  language:
3
  - en
4
+ license: llama2
5
+ library_name: transformers
6
  tags:
7
+ - uncensored
8
  - transformers
 
9
  - llama
10
+ - llama-3
 
 
11
  ---
12
 
13
+ # Finetune Meta Llama-3 8b to create an Uncensored Model with Devs Do Code!
14
 
15
+ 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.
 
 
16
 
17
+ ## Model Details
18
+ - **Model Name:** DevsDoCode/LLama-3-8b-Uncensored
19
+ - **Base Model:** Meta/meta-llama-3-8b
20
+ - **License:** llama2
21
 
22
+ ## How to Use
23
+ You can easily access and utilize our uncensored model using the Hugging Face Transformers library. Here's a sample code snippet to get started:
24
+
25
+ ```python
26
+ from transformers import GPT2Tokenizer, GPT2LMHeadModel
27
+
28
+ model_name = "DevsDoCode/LLama-3-8b-Uncensored"
29
+ tokenizer = GPT2Tokenizer.from_pretrained(model_name)
30
+ model = GPT2LMHeadModel.from_pretrained(model_name)
31
+
32
+ # Now you can generate text using the model!