Guy DuGan II commited on
Commit
e00f7d7
·
verified ·
1 Parent(s): 2541e6d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +138 -0
README.md ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: AI Helps Finding Best Merging LLMs
3
+ language:
4
+ - en
5
+ license: other
6
+ task_categories:
7
+ - text-generation
8
+ - text-ranking
9
+ - summarization
10
+ - question-answering
11
+ - text-retrieval
12
+ tags:
13
+ - llm
14
+ - llm-comparison
15
+ - model-ranking
16
+ - model-merging
17
+ - mixture-of-experts
18
+ - moe
19
+ - prompt-comparison
20
+ - ai-research
21
+ - open-source-llm
22
+ - reasoning
23
+ - coding
24
+ - long-context
25
+ size_categories:
26
+ - n<1K
27
+ ---
28
+
29
+ # Dataset Card for AI Helps Finding Best Merging LLMs
30
+
31
+ ## Dataset Summary
32
+
33
+ **AI Helps Finding Best Merging LLMs** is a **prompt-response comparison dataset** created by manually submitting the same user-written evaluation template to multiple LLM applications and collecting their responses.
34
+
35
+ The creator wrote a structured ranking template and fed it to each LLM individually in its own app environment. The template asks models to identify top open-source, fine-tunable LLMs across several categories, including:
36
+
37
+ - top LLMs by parameter class
38
+ - top models trained or fine-tuned on highly respected datasets
39
+ - top models trained on many datasets
40
+ - best models for Mixture-of-Experts merges
41
+ - “best of the best” model recommendations
42
+
43
+ This makes the dataset useful for studying **how different LLMs interpret the same research prompt**, what models they recommend, how consistent their rankings are, and how much overlap or disagreement exists across systems.
44
+
45
+ ## Dataset Creation
46
+
47
+ ### Curation Rationale
48
+
49
+ This dataset was created to compare how multiple LLMs respond to the same detailed research prompt about:
50
+
51
+ - open-source LLM quality
52
+ - context-window requirements
53
+ - fine-tunability and trainability
54
+ - benchmark strength
55
+ - candidate models for merging and MoE workflows
56
+
57
+ The core design principle is **same prompt, different model/app**, allowing side-by-side review of model recommendations and reasoning styles.
58
+
59
+ ### Source Data
60
+
61
+ The source prompt template was written by the dataset creator. The uploaded template includes requirements such as:
62
+
63
+ - models must be open source and free to use
64
+ - models must have context windows from 128k to unlimited
65
+ - models must be fine-tunable/trainable
66
+ - models must have high benchmarks compared to closed models
67
+
68
+ It also defines the ranking buckets and comparison sections used across all collected outputs. [oai_citation:1‡Facts on llm’s .pdf](sediment://file_00000000c500722f83d6fb554174d0ce)
69
+
70
+ ### Data Collection Process
71
+
72
+ The collection process is:
73
+
74
+ 1. A single template was written by the dataset creator.
75
+ 2. That same template was entered manually into different LLM apps.
76
+ 3. Each app/model produced its own answer.
77
+ 4. Those answers were saved as documents and gathered into this dataset.
78
+
79
+ Because each response comes from a different app or model environment, the dataset is best understood as a **comparative output corpus** rather than a normalized benchmark table.
80
+
81
+ ### Who Curated the Dataset
82
+
83
+ Curated by **gss1147**.
84
+
85
+ ## What the Template Asked the Models
86
+
87
+ The source template asks models to rank LLMs in three size classes:
88
+
89
+ - **1 Billion & Under**
90
+ - **3 Billion to 5 Billion**
91
+ - **7 Billion to 10 Billion**
92
+
93
+ It also asks for:
94
+
95
+ - **20 LLMs fine-tuned or pre-trained on the most respected datasets**
96
+ - **20 LLMs fine-tuned or pre-trained on the most datasets**
97
+ - **Top 5 LLMs best suited for Mixture-of-Experts merges**
98
+ - **Top 5 “best of the best” LLMs**
99
+
100
+ These instructions are explicitly present in the creator’s template. [oai_citation:2‡Facts on llm’s .pdf](sediment://file_00000000c500722f83d6fb554174d0ce)
101
+
102
+ ## Supported Tasks and Use Cases
103
+
104
+ This dataset is useful for:
105
+
106
+ - **LLM output comparison**
107
+ - **Prompt consistency studies**
108
+ - **Model recommendation analysis**
109
+ - **Research on ranking agreement/disagreement across LLMs**
110
+ - **LLM self-reported knowledge comparison**
111
+ - **Model-merging research support**
112
+ - **Extracting candidate open-source models for follow-up validation**
113
+
114
+ Possible downstream uses:
115
+
116
+ - compare which models are repeatedly recommended across assistants
117
+ - measure ranking stability across apps
118
+ - identify hallucinated versus plausible model suggestions
119
+ - build a retrieval layer over multi-LLM research responses
120
+ - convert outputs into a structured comparison table
121
+
122
+ ## Dataset Structure
123
+
124
+ ### Data Instances
125
+
126
+ Each instance is best thought of as one collected answer from one LLM/app in response to the same template.
127
+
128
+ Example conceptual structure:
129
+
130
+ ```json
131
+ {
132
+ "prompt_template": "List your top LLMs for each of the 3 weight classes...",
133
+ "source_app": "name of LLM app or platform",
134
+ "source_model": "name of responding model if known",
135
+ "response_text": "full model answer",
136
+ "response_format": "pdf or extracted text",
137
+ "topic": "open-source LLM ranking and merge candidate selection"
138
+ }