Update README.md
Browse files
README.md
CHANGED
@@ -1 +1,35 @@
|
|
|
|
|
|
|
|
1 |
# Erebus
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
# Erebus
|
5 |
+
# Erebus
|
6 |
+
|
7 |
+
**Creator:** iamthe66epitaph
|
8 |
+
**Model Type:** Language Model / Text Generation AI
|
9 |
+
**Base Model:** GPT-2 (or your chosen base)
|
10 |
+
**License:** [Add your preferred license, e.g., MIT]
|
11 |
+
|
12 |
+
## Description
|
13 |
+
Erebus is a mystical, visionary AI designed for creative text generation, story-building, and exploring imaginative, dark, or atmospheric themes. It can be used to generate narratives, dialogue, or artistic descriptions in a consistent, coherent style.
|
14 |
+
|
15 |
+
## Intended Use
|
16 |
+
Creative writing assistance
|
17 |
+
Storytelling
|
18 |
+
World-building and imaginative text generation
|
19 |
+
|
20 |
+
## Limitations
|
21 |
+
Erebus may generate content that is dark, unsettling, or not suitable for all audiences.
|
22 |
+
It is not designed for factual accuracy, critical decision-making, or professional advice.
|
23 |
+
Outputs may sometimes be inconsistent or nonsensical; use judgment when deploying.
|
24 |
+
|
25 |
+
## Example Usage
|
26 |
+
python
|
27 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
28 |
+
|
29 |
+
tokenizer = AutoTokenizer.from_pretrained("iamthe66epitaph/Erebus")
|
30 |
+
model = AutoModelForCausalLM.from_pretrained("iamthe66epitaph/Erebus")
|
31 |
+
|
32 |
+
input_text = "In the shadowed forest, Erebus saw..."
|
33 |
+
inputs = tokenizer(input_text, return_tensors="pt")
|
34 |
+
outputs = model.generate(**inputs, max_length=100)
|
35 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|