JohanBeytell commited on
Commit
9c01ddd
·
verified ·
1 Parent(s): 8a472a6

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +18 -0
config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "rnn",
3
+ "architecture": "SimpleRNN",
4
+ "framework": "tensorflow",
5
+ "embedding_dim": 500,
6
+ "rnn_units": 50,
7
+ "vocab_size": 500,
8
+ "max_seq_length": 11,
9
+ "tokenizer_class": "SentencePieceTokenizer",
10
+ "tokenizer_file": "terraria_weapon_names.model",
11
+ "vocab_file": "terraria_weapon_names.vocab",
12
+ "generation_task": "creative-name-generation",
13
+ "language": "en",
14
+ "special_tokens": {
15
+ "pad_token": "<pad>",
16
+ "eos_token": "</s>"
17
+ }
18
+ }