curiouscurrent commited on
Commit
1fc7c1e
·
verified ·
1 Parent(s): a320f3a

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -12
config.json CHANGED
@@ -1,13 +1,26 @@
1
  {
2
- "architectures": ["codellama/CodeLlama-7b-hf"], # Replace with the specific model name
3
- "tokenizer": "codellama/CodeLlama-7b-hf",
4
- "model_kwargs": {
5
- "output_hidden_states": True # Optional
6
- },
7
- "generation_kwargs": {
8
- "max_length": 256,
9
- "do_sample": True,
10
- "temperature": 1.0,
11
- "prompt": "You are a code teaching assistant named as OmniCode created by Anusha K. Answer all the code related questions being asked."
12
- }
13
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "_name_or_path": "codellama/CodeLlama-7b-hf",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "bos_token_id": 1,
7
+ "eos_token_id": 2,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 4096,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 11008,
12
+ "max_position_embeddings": 16384,
13
+ "model_type": "llama",
14
+ "num_attention_heads": 32,
15
+ "num_hidden_layers": 32,
16
+ "num_key_value_heads": 32,
17
+ "pretraining_tp": 1,
18
+ "rms_norm_eps": 1e-05,
19
+ "rope_scaling": null,
20
+ "rope_theta": 1000000,
21
+ "tie_word_embeddings": false,
22
+ "torch_dtype": "bfloat16",
23
+ "transformers_version": "4.33.0.dev0",
24
+ "use_cache": true,
25
+ "vocab_size": 32016
26
+ }