TheBloke commited on
Commit
d20b0c4
1 Parent(s): baa92b2

Initial merged FP16 model commit

Browse files
Files changed (1) hide show
  1. config.json +29 -0
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/workspace/process/lora_base/ehartford_Wizard-Vicuna-30B-Uncensored",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "auto_map": {
7
+ "AutoModel": "modelling_llama.LlamaModel",
8
+ "AutoModelForCausalLM": "modelling_llama.LlamaForCausalLM",
9
+ "AutoModelForSequenceClassification": "modelling_llama.LlamaForSequenceClassification"
10
+ },
11
+ "bos_token_id": 1,
12
+ "eos_token_id": 2,
13
+ "hidden_act": "silu",
14
+ "hidden_size": 6656,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 17920,
17
+ "max_position_embeddings": 8192,
18
+ "max_sequence_length": 2048,
19
+ "model_type": "llama",
20
+ "num_attention_heads": 52,
21
+ "num_hidden_layers": 60,
22
+ "pad_token_id": 0,
23
+ "rms_norm_eps": 1e-06,
24
+ "tie_word_embeddings": false,
25
+ "torch_dtype": "float16",
26
+ "transformers_version": "4.30.0.dev0",
27
+ "use_cache": true,
28
+ "vocab_size": 32000
29
+ }