-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
290 lines (242 loc) · 6.44 KB
/
main.go
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"sync"
. "github.com/go-skynet/LocalAI/pkg/gallery"
"gopkg.in/yaml.v3"
)
var baseGalleryURL string = "github:go-skynet/model-gallery"
var baseConfig string = baseGalleryURL + "/base.yaml"
var baseURLs map[string]string = map[string]string{
// This maps the key to a file into the repository
"koala": "koala",
"manticore": "manticore",
"vicuna": "vicuna",
"airoboros": "airoboros",
"hypermantis": "hypermantis",
"guanaco": "guanaco",
"openllama": "openllama_3b",
"rwkv": "rwkv-raven-1b",
"wizard": "wizard",
}
type Model struct {
ModelID string `json:"modelId"`
Author string `json:"author"`
}
type CardData struct{}
type HFModel struct {
Author string `json:"author"`
CardData struct {
Inference bool `json:"inference"`
License string `json:"license"`
} `json:"cardData"`
Tags []string `json:"tags"`
Siblings []Sibling `json:"siblings"`
Files []File
}
type Sibling struct {
RFileName string `json:"rfilename"`
}
func getModel(modelID string) (HFModel, error) {
var files HFModel
resp, err := http.Get(fmt.Sprintf("https://huggingface.co/api/models/%s", modelID))
if err != nil {
return files, err
}
defer resp.Body.Close()
err = json.NewDecoder(resp.Body).Decode(&files)
if err != nil {
return files, err
}
return files, nil
}
func getSHA256(url string) (string, error) {
resp, err := http.Get(url)
if err != nil {
return "", fmt.Errorf("Failed to fetch the web page: %v\n", err)
}
defer resp.Body.Close()
htmlData, err := ioutil.ReadAll(resp.Body)
if err != nil {
return "", fmt.Errorf("Failed to read the response body: %v\n", err)
}
shaRegex := regexp.MustCompile(`(?s)<strong>SHA256:</strong>\s+(.+?)</li>`)
match := shaRegex.FindSubmatch(htmlData)
if len(match) < 2 {
return "", fmt.Errorf("SHA256 value not found in the HTML")
}
sha := string(match[1])
return sha, nil
}
func getModelFiles(repository string, modelFiles HFModel) (HFModel, error) {
f := []File{}
for _, sibling := range modelFiles.Siblings {
if !strings.HasSuffix(sibling.RFileName, ".bin") {
continue
}
basePath := filepath.Base(sibling.RFileName)
if strings.HasPrefix(basePath, "pytorch") {
continue
}
fileURL := fmt.Sprintf("https://huggingface.co/%s/resolve/main/%s", repository, sibling.RFileName)
shaURL := fmt.Sprintf("https://huggingface.co/%s/blob/main/%s", repository, sibling.RFileName)
sha, err := getSHA256(shaURL)
if err != nil {
fmt.Println("Failed to get SHA for", sibling.RFileName, err)
continue
}
f = append(f, File{
Filename: sibling.RFileName,
SHA256: sha,
URI: fileURL,
})
fmt.Println("Model file:", sibling.RFileName, sha)
}
modelFiles.Files = f
return modelFiles, nil
}
func scrape(concurrency int, modelIDs []string) []GalleryModel {
currentGallery := []GalleryModel{}
muLock := sync.Mutex{}
wg := new(sync.WaitGroup)
uris := make(chan string)
models := make(chan GalleryModel)
for i := 0; i < concurrency; i++ {
wg.Add(1)
go scraperWorker(wg, uris, models)
}
go func() {
for _, u := range modelIDs {
uris <- u
}
close(uris)
}()
doneChan := make(chan bool, 1)
go func() {
fmt.Println("getting models results")
for u := range models {
fmt.Println("appending", u.Name)
muLock.Lock()
currentGallery = append(currentGallery, u)
muLock.Unlock()
}
doneChan <- true
}()
wg.Wait()
close(models)
fmt.Println("Waiting for models")
<-doneChan
return currentGallery
}
func scraperWorker(wg *sync.WaitGroup, c chan string, g chan GalleryModel) {
defer wg.Done()
for model := range c {
// Step 3: Retrieve model files (siblings)
m, err := getModel(model)
if err != nil {
log.Println("Failed to retrieve files for model", model)
continue
}
// Step 4: Save the model files
mm, err := getModelFiles(model, m)
if err != nil {
log.Println("Failed to save files for model", model)
continue
}
for _, m := range mm.Files {
url := baseConfig
for k, v := range baseURLs {
// Check if the model name or ID contains the key
// TODO: This is a bit hacky, we should probably use a regex(?)
if strings.Contains(strings.ToLower(m.Filename), k) || strings.Contains(strings.ToLower(model), k) {
url = fmt.Sprintf("%s/%s.yaml", baseGalleryURL, v)
break
}
}
modelName := strings.ReplaceAll(strings.ToLower(fmt.Sprintf("%s/%s", model, m.Filename)), "/", "__")
g <- GalleryModel{
Name: modelName,
URLs: []string{fmt.Sprintf("https://huggingface.co/%s", model)},
License: mm.CardData.License,
Icon: "",
Overrides: map[string]interface{}{
"parameters": map[string]interface{}{
"model": m.Filename,
},
},
AdditionalFiles: []File{m},
URL: url,
Tags: mm.Tags,
}
}
}
}
func scrapeHuggingFace(term string, concurrency int) {
// Step 1: Get a list of all models
resp, err := http.Get(fmt.Sprintf("https://huggingface.co/api/models?search=%s", term))
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
var modelList []Model
err = json.NewDecoder(resp.Body).Decode(&modelList)
if err != nil {
log.Fatal(err)
}
currentGallery := []GalleryModel{}
currentGalleryMap := map[string]GalleryModel{}
dat, err := ioutil.ReadFile("index.yaml")
if err == nil {
err = yaml.Unmarshal(dat, ¤tGallery)
if err != nil {
log.Fatal(err)
}
}
for _, model := range currentGallery {
currentGalleryMap[model.Name] = model
}
//gallery := []GalleryModel{}
ids := []string{}
// Step 2: Process each model and retrieve its files (siblings)
for _, model := range modelList {
ids = append(ids, model.ModelID)
}
fmt.Println("Processing", len(ids), "models")
gallery := scrape(concurrency, ids)
for _, model := range gallery {
currentGalleryMap[model.Name] = model
}
gallery = []GalleryModel{}
for _, g := range currentGalleryMap {
gallery = append(gallery, g)
}
sort.Slice(gallery, func(i, j int) bool {
return gallery[i].Name < gallery[j].Name
})
// Step 5: Save the gallery
galleryYAML, err := yaml.Marshal(gallery)
if err != nil {
log.Fatal(err)
}
ioutil.WriteFile("index.yaml", galleryYAML, 0644)
}
func main() {
concurrency := 10
c := os.Getenv("CONCURRENCY")
parallelism, err := strconv.Atoi(c)
if err == nil {
concurrency = parallelism
}
scrapeHuggingFace("TheBloke", concurrency)
scrapeHuggingFace("ggml", concurrency)
}