-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathState.swift
192 lines (162 loc) · 6.51 KB
/
State.swift
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
//
// State.swift
// Diffusion
//
// Created by Pedro Cuenca on 17/1/23.
// See LICENSE at https://github.com/huggingface/swift-coreml-diffusers/LICENSE
//
import Combine
import SwiftUI
import StableDiffusion
import CoreML
let DEFAULT_MODEL = ModelInfo.v2Base
let DEFAULT_PROMPT = "Labrador in the style of Vermeer"
enum GenerationState {
case startup
case running(StableDiffusionProgress?)
case complete(String, CGImage?, UInt32, TimeInterval?, Double?)
case userCanceled
case failed(Error)
}
typealias ComputeUnits = MLComputeUnits
/// Schedulers compatible with StableDiffusionPipeline. This is a local implementation of the StableDiffusionScheduler enum as a String represetation to allow for compliance with NSSecureCoding.
public enum StableDiffusionScheduler: String {
/// Scheduler that uses a pseudo-linear multi-step (PLMS) method
case pndmScheduler
/// Scheduler that uses a second order DPM-Solver++ algorithm
case dpmSolverMultistepScheduler
func asStableDiffusionScheduler() -> StableDiffusion.StableDiffusionScheduler {
switch self {
case .pndmScheduler: return StableDiffusion.StableDiffusionScheduler.pndmScheduler
case .dpmSolverMultistepScheduler: return StableDiffusion.StableDiffusionScheduler.dpmSolverMultistepScheduler
}
}
}
class GenerationContext: ObservableObject {
let scheduler = StableDiffusionScheduler.dpmSolverMultistepScheduler
@Published var pipeline: Pipeline? = nil {
didSet {
if let pipeline = pipeline {
progressSubscriber = pipeline
.progressPublisher
.receive(on: DispatchQueue.main)
.sink { progress in
guard let progress = progress else { return }
self.updatePreviewIfNeeded(progress)
self.state = .running(progress)
}
}
}
}
@Published var state: GenerationState = .startup
@Published var positivePrompt = DEFAULT_PROMPT
@Published var negativePrompt = ""
// FIXME: Double to support the slider component
@Published var steps = 20.0
@Published var numImages = 1.0
@Published var seed: UInt32 = 0
@Published var guidanceScale = 7.5
@Published var previews = runningOnMac ? 5.0 : 0.0
@Published var disableSafety = false
@Published var previewImage: CGImage? = nil
@Published var computeUnits: ComputeUnits = Settings.shared.userSelectedComputeUnits ?? ModelInfo.defaultComputeUnits
private var progressSubscriber: Cancellable?
private func updatePreviewIfNeeded(_ progress: StableDiffusionProgress) {
if previews == 0 || progress.step == 0 {
previewImage = nil
}
if previews > 0, let newImage = progress.currentImages.first, newImage != nil {
previewImage = newImage
}
}
func generate() async throws -> GenerationResult {
guard let pipeline = pipeline else { throw "No pipeline" }
return try pipeline.generate(
prompt: positivePrompt,
negativePrompt: negativePrompt,
scheduler: scheduler,
numInferenceSteps: Int(steps),
seed: seed,
numPreviews: Int(previews),
guidanceScale: Float(guidanceScale),
disableSafety: disableSafety
)
}
func cancelGeneration() {
pipeline?.setCancelled()
}
}
class Settings {
static let shared = Settings()
let defaults = UserDefaults.standard
enum Keys: String {
case model
case safetyCheckerDisclaimer
case computeUnits
}
private init() {
defaults.register(defaults: [
Keys.model.rawValue: ModelInfo.v2Base.modelId,
Keys.safetyCheckerDisclaimer.rawValue: false,
Keys.computeUnits.rawValue: -1 // Use default
])
}
var currentModel: ModelInfo {
set {
defaults.set(newValue.modelId, forKey: Keys.model.rawValue)
}
get {
guard let modelId = defaults.string(forKey: Keys.model.rawValue) else { return DEFAULT_MODEL }
return ModelInfo.from(modelId: modelId) ?? DEFAULT_MODEL
}
}
var safetyCheckerDisclaimerShown: Bool {
set {
defaults.set(newValue, forKey: Keys.safetyCheckerDisclaimer.rawValue)
}
get {
return defaults.bool(forKey: Keys.safetyCheckerDisclaimer.rawValue)
}
}
/// Returns the option selected by the user, if overridden
/// `nil` means: guess best
var userSelectedComputeUnits: ComputeUnits? {
set {
// Any value other than the supported ones would cause `get` to return `nil`
defaults.set(newValue?.rawValue ?? -1, forKey: Keys.computeUnits.rawValue)
}
get {
let current = defaults.integer(forKey: Keys.computeUnits.rawValue)
guard current != -1 else { return nil }
return ComputeUnits(rawValue: current)
}
}
public func applicationSupportURL() -> URL {
let fileManager = FileManager.default
guard let appDirectoryURL = fileManager.urls(for: .applicationSupportDirectory, in: .userDomainMask).first else {
// To ensure we don't return an optional - if the user domain application support cannot be accessed use the top level application support directory
return URL.applicationSupportDirectory
}
do {
// Create the application support directory if it doesn't exist
try fileManager.createDirectory(at: appDirectoryURL, withIntermediateDirectories: true, attributes: nil)
return appDirectoryURL
} catch {
print("Error creating application support directory: \(error)")
return fileManager.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!
}
}
func tempStorageURL() -> URL {
let tmpDir = applicationSupportURL().appendingPathComponent("hf-diffusion-tmp")
// Create directory if it doesn't exist
if !FileManager.default.fileExists(atPath: tmpDir.path) {
do {
try FileManager.default.createDirectory(at: tmpDir, withIntermediateDirectories: true, attributes: nil)
} catch {
print("Failed to create temporary directory: \(error)")
return FileManager.default.temporaryDirectory
}
}
return tmpDir
}
}