mrseeker87 commited on
Commit
cc99a07
1 Parent(s): 2a05261

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md CHANGED
@@ -1,3 +1,47 @@
1
  ---
 
2
  license: other
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: en
3
  license: other
4
+ commercial: no
5
+ inference: false
6
  ---
7
+ # OPT 30B - Erebus
8
+ ## Model description
9
+ This is the second generation of the original Shinen made by Mr. Seeker. The full dataset consists of 6 different sources, all surrounding the "Adult" theme. The name "Erebus" comes from the greek mythology, also named "darkness". This is in line with Shin'en, or "deep abyss". For inquiries, please contact the KoboldAI community. **Warning: THIS model is NOT suitable for use by minors. The model will output X-rated content.**
10
+
11
+ ## Training data
12
+ The data can be divided in 6 different datasets:
13
+ - Literotica (everything with 4.5/5 or higher)
14
+ - Sexstories (everything with 90 or higher)
15
+ - Dataset-G (private dataset of X-rated stories)
16
+ - Doc's Lab (all stories)
17
+ - Pike Dataset (novels with "adult" rating)
18
+ - SoFurry (collection of various animals)
19
+
20
+ The dataset uses `[Genre: <comma-separated list of genres>]` for tagging.
21
+
22
+ ### How to use
23
+ You can use this model directly with a pipeline for text generation. This example generates a different sequence each time it's run:
24
+ ```py
25
+ >>> from transformers import pipeline
26
+ >>> generator = pipeline('text-generation', model='KoboldAI/OPT-30B-Erebus')
27
+ >>> generator("Welcome Captain Janeway, I apologize for the delay.", do_sample=True, min_length=50)
28
+ [{'generated_text': 'Welcome Captain Janeway, I apologize for the delay."\nIt's all right," Janeway said. "I'm certain that you're doing your best to keep me informed of what\'s going on."'}]
29
+ ```
30
+
31
+ ## Limitations and biases
32
+ Based on known problems with NLP technology, potential relevant factors include bias (gender, profession, race and religion). **Warning: This model has a very strong NSFW bias!**
33
+
34
+ ### License
35
+ OPT-30B is licensed under the OPT-175B license, Copyright (c) Meta Platforms, Inc. All Rights Reserved.
36
+
37
+ ### BibTeX entry and citation info
38
+ ```
39
+ @misc{zhang2022opt,
40
+ title={OPT: Open Pre-trained Transformer Language Models},
41
+ author={Susan Zhang and Stephen Roller and Naman Goyal and Mikel Artetxe and Moya Chen and Shuohui Chen and Christopher Dewan and Mona Diab and Xian Li and Xi Victoria Lin and Todor Mihaylov and Myle Ott and Sam Shleifer and Kurt Shuster and Daniel Simig and Punit Singh Koura and Anjali Sridhar and Tianlu Wang and Luke Zettlemoyer},
42
+ year={2022},
43
+ eprint={2205.01068},
44
+ archivePrefix={arXiv},
45
+ primaryClass={cs.CL}
46
+ }
47
+ ```