Jan commited on
Commit
e6e4843
1 Parent(s): 6eefd99

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ ---
6
+ <!-- header start -->
7
+ <!-- 200823 -->
8
+ <div style="width: auto; margin-left: auto; margin-right: auto">
9
+ <img src="https://github.com/janhq/jan/assets/89722390/35daac7d-b895-487c-a6ac-6663daaad78e" alt="Jan banner" style="width: 100%; min-width: 400px; display: block; margin: auto;">
10
+ </div>
11
+
12
+ <p align="center">
13
+ <a href="https://jan.ai/">Jan</a>
14
+ - <a href="https://discord.gg/AsJ8krTT3N">Discord</a>
15
+ </p>
16
+ <!-- header end -->
17
+
18
+ # Model Description
19
+ This model uses the `Slerp` merge method from the best models on 14th Dec on the [OpenLLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard):
20
+ 1. [viethq188/LeoScorpius-7B-Chat-DPO](https://huggingface.co/viethq188/LeoScorpius-7B-Chat-DPO)
21
+ 2. [GreenNode/GreenNodeLM-7B-v1olet](https://huggingface.co/GreenNode/GreenNodeLM-7B-v1olet)
22
+
23
+ - base model: [GreenNode/GreenNodeLM-7B-v1olet](https://huggingface.co/GreenNode/GreenNodeLM-7B-v1olet)
24
+
25
+ The yaml config file for this model is here:
26
+
27
+ ```yaml
28
+ slices:
29
+ - sources:
30
+ - model: viethq188/LeoScorpius-7B-Chat-DPO
31
+
32
+ layer_range: [0, 32]
33
+ - model: GreenNode/GreenNodeLM-7B-v1olet
34
+ layer_range: [0, 32]
35
+ merge_method: slerp
36
+ base_model: GreenNode/GreenNodeLM-7B-v1olet
37
+ parameters:
38
+ t:
39
+ - filter: self_attn
40
+ value: [0, 0.5, 0.3, 0.7, 1]
41
+ - filter: mlp
42
+ value: [1, 0.5, 0.7, 0.3, 0]
43
+ - value: 0.5
44
+ dtype: bfloat16
45
+ ```
46
+
47
+ # About Jan
48
+ Jan believes in the need for an open-source AI ecosystem and is building the infra and tooling to allow open-source AIs to compete on a level playing field with proprietary ones.
49
+
50
+ Jan's long-term vision is to build a cognitive framework for future robots, who are practical, useful assistants for humans and businesses in everyday life.
51
+
52
+ # Jan Model Merger
53
+ This is a test project for merging models.
54
+
55
+ # Open LLM Leaderboard Evaluation Results
56
+
57
+ Detailed results can be found here.
58
+
59
+ | Metric | Value |
60
+ |-----------------------|---------------------------|
61
+ | Avg. | ?|
62
+ | ARC (25-shot) | ? |
63
+ | HellaSwag (10-shot) | ? |
64
+ | MMLU (5-shot) | ?|
65
+ | TruthfulQA (0-shot) | ? |
66
+ | Winogrande (5-shot) | ? |
67
+ | GSM8K (5-shot) | ? |
68
+
69
+ # Acknowlegement
70
+ - [mergekit](https://github.com/cg123/mergekit)
71
+ - [DARE](https://github.com/yule-BUAA/MergeLM/blob/main/README.md)
72
+ -
73
+ [SLERP](https://github.com/Digitous/LLM-SLERP-Merge)
74
+ - [lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness)