Update README.md
Browse files
README.md
CHANGED
@@ -28,7 +28,7 @@ This model was trained using AutoTrain. For more information, please visit [Auto
|
|
28 |
|
29 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
30 |
|
31 |
-
model_path = "
|
32 |
|
33 |
tokenizer = AutoTokenizer.from_pretrained(model_path)
|
34 |
model = AutoModelForCausalLM.from_pretrained(
|
@@ -48,4 +48,10 @@ response = tokenizer.decode(output_ids[0][input_ids.shape[1]:], skip_special_tok
|
|
48 |
|
49 |
# Model response: "Hello! How can I assist you today?"
|
50 |
print(response)
|
51 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
30 |
|
31 |
+
model_path = "mrcuddle/Tiny-DarkLlama"
|
32 |
|
33 |
tokenizer = AutoTokenizer.from_pretrained(model_path)
|
34 |
model = AutoModelForCausalLM.from_pretrained(
|
|
|
48 |
|
49 |
# Model response: "Hello! How can I assist you today?"
|
50 |
print(response)
|
51 |
+
```
|
52 |
+
Datasets used in training:
|
53 |
+
|
54 |
+
- ChaoticNeutrals/Synthetic-Dark-RP
|
55 |
+
- ChaoticNeutrals/Synthetic-RP
|
56 |
+
- ChaoticNeutrals/Luminous_Opus
|
57 |
+
- NobodyExistsOnTheInternet/ToxicQAFinal
|