kevin009 commited on
Commit
dd5a16f
·
verified ·
1 Parent(s): 9421eb2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -13
README.md CHANGED
@@ -1,22 +1,38 @@
1
  ---
2
- base_model: llama323-16
3
- tags:
4
- - text-generation-inference
5
- - transformers
6
- - unsloth
7
- - llama
8
- - trl
9
  license: apache-2.0
10
  language:
11
  - en
 
 
 
 
 
 
 
 
12
  ---
13
 
14
- # Uploaded model
 
 
 
15
 
16
- - **Developed by:** kevin009
17
- - **License:** apache-2.0
18
- - **Finetuned from model :** llama323-16
19
 
20
- This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
21
 
22
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
2
  license: apache-2.0
3
  language:
4
  - en
5
+ base_model:
6
+ - meta-llama/Llama-3.1-8B-instruct
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - lora
10
+ - adapter
11
+ - writing
12
+ - CoT
13
  ---
14
 
15
+ ## Model Details
16
+
17
+ - Base Model: meta-llama/Llama-3.1-8B-instruct
18
+
19
 
20
+ ## Merger Configuration
 
 
21
 
22
+ ### Source Adapters
23
 
24
+ All source adapters share the following configuration:
25
+ - Rank (r): 16
26
+ - Alpha: 16
27
+ - Target Modules:
28
+ - q_proj (Query projection)
29
+ - k_proj (Key projection)
30
+ - v_proj (Value projection)
31
+ - o_proj (Output projection)
32
+ - up_proj (Upsampling projection)
33
+ - down_proj (Downsampling projection)
34
+ - gate_proj (Gate projection)
35
+ - The order of loading adapters may affect the final result
36
+ - Equal weights were chosen to maintain balanced influence from each adapter
37
+ - The merged adapter maintains the same architecture and rank as the original adapters
38
+ - While this adapter merges multiple fine-tunes, each component was developed as part of independent research efforts to explore and language model capabilities as part of R&D process.