File size: 1,751 Bytes
2b4ebcb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
54
55
56
57
58
59
###############################
# llama-3-attenuated.yaml #
###############################

# Use: mergekit-yaml --clone-tensors ./llama-3-attenuated.yaml ./llama-3-attenuated
# See: https://github.com/arcee-ai/mergekit/issues/198 for discussion/reasoning behind this idea.

# ---

# The scale factor to use, eg: solve x^2 = 1/2 --> x = 1/sqrt(2) ≈ 0.7071067812
const_tag: &scale_factor 0.7071067812 # 1/sqrt(2)

# The filter parameters of a scaled block. 
attenuate-env: &attenuated_env
  parameters:
    scale:
      - filter: q_proj
        value: *scale_factor
      - filter: k_proj
        value: *scale_factor
      - value: 1.0

# ---

slices:

  ###########################
  # Block 1: miqu-1 [0, 16] #
  ###########################
  - sources:
    - model: kuotient/Meta-Llama-3-8B-Instruct
      layer_range: [0, 8] # The first 8 layers of Block 1 are not duplicated
  - sources:
    - model: kuotient/Meta-Llama-3-8B-Instruct
      layer_range: [8, 16] # The last 8 layers of Block 1 are are duplicated twice
      <<: *attenuated_env

  ###########################
  # Block 2: miqu-1 [8, 24] #
  ###########################
  - sources:
    - model: kuotient/Meta-Llama-3-8B-Instruct
      layer_range: [8, 24] # All the layers of Block 2 are are duplicated twice
      <<: *attenuated_env

  ##########################
  # Block 3: miqu-1 [16, 32] #
  ##########################
  - sources:
    - model: kuotient/Meta-Llama-3-8B-Instruct
      layer_range: [16, 24] # The first 8 layers of Block 3 are are duplicated twice
      <<: *attenuated_env
  - sources:
    - model: kuotient/Meta-Llama-3-8B-Instruct
      layer_range: [24, 32] # The last 8 layers of Block 3 are not duplicated

merge_method: passthrough
dtype: bfloat16