louisbrulenaudet commited on
Commit
5b46aff
·
verified ·
1 Parent(s): 837b122

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md CHANGED
@@ -105,3 +105,47 @@ configs:
105
  - split: raw
106
  path: data/raw-*
107
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  - split: raw
106
  path: data/raw-*
107
  ---
108
+
109
+ ## Dataset Description
110
+ - **Repository:** https://huggingface.co/datasets/louisbrulenaudet/mergekit-configs
111
+ - **Leaderboard:** N/A
112
+ - **Point of Contact:** [Louis Brulé Naudet](mailto:[email protected])
113
+
114
+ # MergeKit-configs: access all Hub architectures and automate your model merging process
115
+
116
+ ```python
117
+ import polars as pl
118
+
119
+ # Login using e.g. `huggingface-cli login` to access this dataset
120
+ df = pl.read_parquet('hf://datasets/louisbrulenaudet/mergekit-configs/data/raw-00000-of-00001.parquet')
121
+
122
+ result = (
123
+ df.groupby(
124
+ [
125
+ "architectures",
126
+ "hidden_size",
127
+ "model_type",
128
+ "intermediate_size"
129
+ ]
130
+ ).agg(
131
+ pl.struct([pl.col("id")]).alias("models")
132
+ )
133
+ )
134
+ ```
135
+
136
+ ## Citing & Authors
137
+
138
+ If you use this dataset in your research, please use the following BibTeX entry.
139
+
140
+ ```BibTeX
141
+ @misc{HFforLegal2024,
142
+ author = {Louis Brulé Naudet},
143
+ title = {MergeKit-configs: access all Hub architectures and automate your model merging process},
144
+ year = {2024}
145
+ howpublished = {\url{https://huggingface.co/datasets/louisbrulenaudet/mergekit-configs}},
146
+ }
147
+ ```
148
+
149
+ ## Feedback
150
+
151
+ If you have any feedback, please reach out at [[email protected]](mailto:[email protected]).