-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.yml
53 lines (42 loc) · 858 Bytes
/
base.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
defs:
model: &base_config
n_positions: 141
n_layer: 12
n_embd: 256
n_head: 8
model: &small_config
<<: *base_config
n_layer: 6
n_head: 4
n_embd: 64
model: &retrieval_config
<<: *base_config
n_layer: 2
n_embd: 128
model: &std_gpt2
<<: *base_config
type: gpt2
model: &std_llama
<<: *base_config
type: llama
model: &std_mamba
<<: *base_config
type: mamba
model: &small_gpt2
<<: *small_config
type: gpt2
model: &small_llama
<<: *small_config
type: llama
model: &small_mamba
<<: *small_config
type: mamba
model: &retrieval_gpt2
<<: *retrieval_config
type: gpt2
model: &retrieval_llama
<<: *retrieval_config
type: llama
model: &retrieval_mamba
<<: *retrieval_config
type: mamba