finetune commited on
Commit
753a03e
1 Parent(s): 82ed10a

Add calliope-alpha (#1)

Browse files

- Add calliope-alpha (8a7641b591647299c59fc3eec106b69b5fe9c8da)

README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-2.0
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - model
9
+ - novelai
10
+ - retired
11
+ ---
12
+
13
+ # Calliope (NovelAI Alpha)
14
+
15
+ This repository contains the original Calliope model used during NovelAI's closed alpha test. It is based on [EleutherAI's GPT-Neo 2.7B model](https://huggingface.co/EleutherAI/gpt-neo-2.7B).
16
+
17
+ As the model has been retired, we publicly release it, licensed under the GNU GPL 2.0 license.
config.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "GPTNeoForCausalLM"
5
+ ],
6
+ "attention_dropout": 0,
7
+ "attention_layers": [
8
+ "global",
9
+ "local",
10
+ "global",
11
+ "local",
12
+ "global",
13
+ "local",
14
+ "global",
15
+ "local",
16
+ "global",
17
+ "local",
18
+ "global",
19
+ "local",
20
+ "global",
21
+ "local",
22
+ "global",
23
+ "local",
24
+ "global",
25
+ "local",
26
+ "global",
27
+ "local",
28
+ "global",
29
+ "local",
30
+ "global",
31
+ "local",
32
+ "global",
33
+ "local",
34
+ "global",
35
+ "local",
36
+ "global",
37
+ "local",
38
+ "global",
39
+ "local"
40
+ ],
41
+ "attention_types": [
42
+ [
43
+ [
44
+ "global",
45
+ "local"
46
+ ],
47
+ 16
48
+ ]
49
+ ],
50
+ "bos_token_id": 50256,
51
+ "embed_dropout": 0,
52
+ "eos_token_id": 50256,
53
+ "gradient_checkpointing": false,
54
+ "hidden_size": 2560,
55
+ "initializer_range": 0.02,
56
+ "intermediate_size": null,
57
+ "layer_norm_epsilon": 1e-05,
58
+ "max_position_embeddings": 2048,
59
+ "model_type": "gpt_neo",
60
+ "num_heads": 20,
61
+ "num_layers": 32,
62
+ "resid_dropout": 0,
63
+ "summary_activation": null,
64
+ "summary_first_dropout": 0.1,
65
+ "summary_proj_to_labels": true,
66
+ "summary_type": "cls_index",
67
+ "summary_use_proj": true,
68
+ "transformers_version": "4.5.0.dev0",
69
+ "use_cache": true,
70
+ "vocab_size": 50257,
71
+ "window_size": 256,
72
+ "tokenizer_class": "GPT2Tokenizer",
73
+ "task_specific_params": {
74
+ "text-generation": {
75
+ "do_sample": true,
76
+ "temperature": 0.9,
77
+ "max_length": 50
78
+ }
79
+ }
80
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77a565bbe129f675140e851e2c345b2bbb708dc086348bf19e1d60f53e1225a6
3
+ size 10672499159
special_token_maps.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "unk_token": "<|endoftext|>"}
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "<|endoftext|>", "bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "add_prefix_space": false, "model_max_length": 2048, "special_tokens_map_file": null, "name_or_path": "gpt2"}
vocab.json ADDED
The diff for this file is too large to render. See raw diff