-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
99 lines (74 loc) · 2 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
package main
import (
"fmt"
"log"
"time"
// "io"
// "net/http"
// "strings"
"github.com/cozy-creator/hf-hub/hub"
"github.com/cozy-creator/hf-hub/hub/pipeline"
"github.com/vbauerster/mpb/v7"
)
// test file download
// func main() {
// client := hub.DefaultClient()
// params := &hub.DownloadParams{
// Repo: &hub.Repo{
// Id: "stable-diffusion-v1-5/stable-diffusion-v1-5",
// Type: hub.ModelRepoType,
// },
// FileName: "unet/diffusion_pytorch_model.safetensors",
// }
// path, err := client.Download(params)
// if err != nil {
// log.Fatalf("Error downloading file: %v", err)
// }
// fmt.Println("File downloaded to:", path)
// }
// test snapshot download
// func main() {
// client := hub.DefaultClient()
// params := &hub.DownloadParams{
// Repo: &hub.Repo{
// Id: "stable-diffusion-v1-5/stable-diffusion-v1-5",
// Type: hub.ModelRepoType,
// },
// AllowPatterns: []string{
// // "*.json",
// // "*.txt",
// "text_encoder/*",
// },
// // IgnorePatterns: []string{
// // "*.bin",
// // "*model.safetensors",
// // "*balstadar",
// // },
// }
// path, err := client.Download(params)
// if err != nil {
// log.Fatalf("Error downloading file: %v", err)
// }
// fmt.Println("File downloaded to:", path)
// }
// Diffusion pipeline download
func main() {
// Create default client
client := hub.DefaultClient()
// Initialize progress bar
progress := mpb.New(
mpb.WithWidth(60),
mpb.WithRefreshRate(180*time.Millisecond),
)
client.Progress = progress
downloader := pipeline.NewDiffusionPipelineDownloader(client)
// Download a diffusion model, ignore text_encoder
fmt.Println("Starting download...")
modelPath, err := downloader.Download("fal/AuraFlow-v0.3", "", nil, nil)
if err != nil {
log.Fatalf("Failed to download model: %v", err)
}
// Wait for progress bars to finish
progress.Wait()
fmt.Printf("Model downloaded to: %s\n", modelPath)
}