ve-forbryderne commited on
Commit
255f1f3
1 Parent(s): add3890

Upload model card

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: apache-2.0
4
+ ---
5
+ # GPT-NeoX-20B-Skein
6
+ ## Model description
7
+ Skein is a series of hybrid story generation models intended for use in both text adventure writing and normal novel-style writing. The models are known to possess a strong second person bias. For inquiries, please contact the KoboldAI community.
8
+
9
+ The name comes from the Integrated Development Environment for the Inform 7 programming language, which calls a dialogue tree a "skein". Inform 6 and 7 were used to create some of the interactive fiction in the dataset.
10
+
11
+ ## Training procedure
12
+ GPT-NeoX-20B-Skein was trained on a TPUv3-32 TPU pod using a heavily modified version of Ben Wang's Mesh Transformer JAX library, the original version of which was used by EleutherAI to train their GPT-J-6B model. The training hyperparameters and statistics can be found [here](https://wandb.ai/ve-forbryderne/skein-20b?workspace=user-ve-forbryderne).
13
+
14
+ ## Training data
15
+ The data are mostly comprised of light novels from the dataset of the [KoboldAI/GPT-Neo-2.7B-Horni-LN](https://huggingface.co/KoboldAI/GPT-Neo-2.7B-Horni-LN) model and assorted interactive fiction. The dataset uses `[Themes: <comma-separated list of genres>]` for tagging. For more details, consult [this document](https://wandb.ai/ve-forbryderne/skein/runs/files/files/datasets/README.txt).
16
+
17
+ ## Limitations and biases
18
+ Based on known problems with NLP technology, potential relevant factors include bias (gender, profession, race and religion).
19
+
20
+ ## Citation details
21
+ The GPT-NeoX-20B model weights:
22
+ ```bibtex
23
+ @inproceedings{gpt-neox-20b,
24
+ title={{GPT-NeoX-20B}: An Open-Source Autoregressive Language Model},
25
+ author={Black, Sid and Biderman, Stella and Hallahan, Eric and Anthony, Quentin and Gao, Leo and Golding, Laurence and He, Horace and Leahy, Connor and McDonell, Kyle and Phang, Jason and Pieler, Michael and Prashanth, USVSN Sai and Purohit, Shivanshu and Reynolds, Laria and Tow, Jonathan and Wang, Ben and Weinbach, Samuel},
26
+ booktitle={Proceedings of the ACL Workshop on Challenges \& Perspectives in Creating Large Language Models},
27
+ url={https://arxiv.org/abs/2204.06745},
28
+ year={2022}
29
+ }
30
+ ```
31
+
32
+ The Mesh Transformer JAX library:
33
+ ```bibtex
34
+ @misc{mesh-transformer-jax,
35
+ author = {Wang, Ben},
36
+ title = {{Mesh-Transformer-JAX: Model-Parallel Implementation of Transformer Language Model with JAX}},
37
+ howpublished = {\url{https://github.com/kingoflolz/mesh-transformer-jax}},
38
+ year = 2021,
39
+ month = May
40
+ }
41
+ ```