File size: 11,358 Bytes
e450b04
 
 
 
 
 
 
a3bb004
 
a36dbc4
e450b04
 
3646e2b
e450b04
 
 
66e9b74
e450b04
 
 
9680a91
e450b04
 
 
 
66e9b74
e450b04
 
 
 
 
 
 
 
 
 
 
 
5a21e7b
 
e450b04
 
3646e2b
e450b04
 
 
 
 
 
 
 
 
66e9b74
 
 
 
 
 
 
 
 
 
 
 
 
 
e450b04
 
 
 
 
 
 
 
66e9b74
e450b04
 
 
66e9b74
e450b04
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e7ba235
e450b04
 
 
 
 
 
 
a3bb004
 
 
 
e450b04
 
 
 
0d2c9ea
55f804d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0d2c9ea
55f804d
0d2c9ea
 
 
 
55f804d
 
0d2c9ea
 
55f804d
 
0d2c9ea
 
 
55f804d
0d2c9ea
55f804d
0d2c9ea
55f804d
0d2c9ea
55f804d
0d2c9ea
 
 
 
 
 
 
 
55f804d
 
0d2c9ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55f804d
0d2c9ea
 
 
 
 
 
 
 
55f804d
 
 
 
a3bb004
e450b04
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a3bb004
e450b04
 
8547456
 
e450b04
 
 
 
a3bb004
 
 
 
 
 
 
 
e450b04
66b703d
e450b04
 
 
 
 
 
 
 
 
 
 
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
import os
from IPython.display import clear_output
from subprocess import call, getoutput
import time
import sys
import fileinput
import ipywidgets as widgets
from torch.hub import download_url_to_file
from urllib.parse import urlparse
import re



def Deps(force_reinstall):

    if not force_reinstall and os.path.exists('/usr/local/lib/python3.9/dist-packages/safetensors'):
        ntbk()
        print('Modules and notebooks updated, dependencies already installed')

    else:
        print('Installing the dependencies...')
        call("pip install --root-user-action=ignore --no-deps -q accelerate==0.12.0", shell=True, stdout=open('/dev/null', 'w'))
        if not os.path.exists('/usr/local/lib/python3.9/dist-packages/safetensors'):
            os.chdir('/usr/local/lib/python3.9/dist-packages')
            call("rm -r torch torch-1.12.0+cu116.dist-info torchaudio* torchvision* PIL Pillow* transformers* numpy* gdown*", shell=True, stdout=open('/dev/null', 'w'))
        ntbk()
        if not os.path.exists('/models'):
            call('mkdir /models', shell=True)
        if not os.path.exists('/notebooks/models'):
            call('ln -s /models /notebooks', shell=True)
        if os.path.exists('/deps'):
            call("rm -r /deps", shell=True)
        call('mkdir /deps', shell=True)
        if not os.path.exists('cache'):
            call('mkdir cache', shell=True)
        os.chdir('/deps')
        call('wget -q -i https://raw.githubusercontent.com/TheLastBen/fast-stable-diffusion/main/Dependencies/aptdeps.txt', shell=True)
        call('dpkg -i *.deb', shell=True, stdout=open('/dev/null', 'w'))
        call('wget -q https://huggingface.co/TheLastBen/dependencies/resolve/main/ppsdeps.tar.zst', shell=True, stdout=open('/dev/null', 'w'))
        call('tar -C / --zstd -xf ppsdeps.tar.zst', shell=True, stdout=open('/dev/null', 'w'))
        call("sed -i 's@~/.cache@/notebooks/cache@' /usr/local/lib/python3.9/dist-packages/transformers/utils/hub.py", shell=True)
        os.chdir('/notebooks')
        call("git clone --depth 1 -q --branch main https://github.com/TheLastBen/diffusers /diffusers", shell=True, stdout=open('/dev/null', 'w'))
        if not os.path.exists('/notebooks/diffusers'):
            call('ln -s /diffusers /notebooks', shell=True)
        call("rm -r /deps", shell=True)
        os.chdir('/notebooks')
        clear_output()

        done()


def ntbk():

    os.chdir('/notebooks')
    if not os.path.exists('Latest_Notebooks'):
        call('mkdir Latest_Notebooks', shell=True)
    else:
        call('rm -r Latest_Notebooks', shell=True)
        call('mkdir Latest_Notebooks', shell=True)
    os.chdir('/notebooks/Latest_Notebooks')
    call('wget -q -i https://huggingface.co/datasets/TheLastBen/PPS/raw/main/Notebooks.txt', shell=True)
    call('rm Notebooks.txt', shell=True)
    os.chdir('/notebooks')


def repo():

    print('Installing/Updating the repo...')
    os.chdir('/notebooks')
    if not os.path.exists('/notebooks/sd/stablediffusion'):
       call('wget -q -O sd_rep.tar.zst https://huggingface.co/TheLastBen/dependencies/resolve/main/sd_rep.tar.zst', shell=True)
       call('tar --zstd -xf sd_rep.tar.zst', shell=True)
       call('rm sd_rep.tar.zst', shell=True)        

    os.chdir('/notebooks/sd')
    if not os.path.exists('stable-diffusion-webui'):
        call('git clone -q --depth 1 --branch master https://github.com/AUTOMATIC1111/stable-diffusion-webui', shell=True)

    os.chdir('/notebooks/sd/stable-diffusion-webui/')
    call('git reset --hard', shell=True, stdout=open('/dev/null', 'w'))
    print('')
    call('git pull', shell=True, stdout=open('/dev/null', 'w'))
    os.chdir('/notebooks')
    clear_output()
    done()


def mdl(Original_Model_Version, Path_to_MODEL, MODEL_LINK, safetensors, Temporary_Storage):
    import gdown
    if Path_to_MODEL !='':
      if os.path.exists(str(Path_to_MODEL)):
        print('Using the trained model.')
        model=Path_to_MODEL
      else:
          print('Wrong path, check that the path to the model is correct')

    elif MODEL_LINK != "":
      modelname="model.safetensors" if safetensors else "model.ckpt"
      if Temporary_Storage:
         model=f'/models/{modelname}'
      else:
         model=f'/notebooks/sd/stable-diffusion-webui/models/Stable-diffusion/{modelname}'
      if os.path.exists(model):
        call('rm '+model, shell=True)
      gdown.download(url=MODEL_LINK, output=model, quiet=False, fuzzy=True)

      if os.path.exists(model) and os.path.getsize(model) > 1810671599:
        clear_output()
        print('Model downloaded, using the trained model.')
      else:
        print('Wrong link, check that the link is valid')

    else:
        if Original_Model_Version == "v1.5":
           model="/datasets/stable-diffusion-classic/v1-5-pruned-emaonly.ckpt"
           print('Using the original V1.5 model')
        elif Original_Model_Version == "v2-512":
           model="/datasets/stable-diffusion-v2-1-base-diffusers/stable-diffusion-2-1-base/v2-1_512-nonema-pruned.safetensors"
           print('Using the original V2-512 model')
        elif Original_Model_Version == "v2-768":
           model="/datasets/stable-diffusion-v2-1/stable-diffusion-2-1/v2-1_768-nonema-pruned.safetensors"
           print('Using the original V2-768 model')
        else:
            model=""
            print('Wrong model version')
    try:
        model
    except:
        model="/notebooks/sd/stable-diffusion-webui/models/Stable-diffusion"    

    return model


def CN(ControlNet_Model, ControlNet_v2_Model):
    
    def download(url, model_dir):

        filename = os.path.basename(urlparse(url).path)
        pth = os.path.abspath(os.path.join(model_dir, filename))
        if not os.path.exists(pth):
            print('Downloading: '+os.path.basename(url))
            download_url_to_file(url, pth, hash_prefix=None, progress=True)
        else:
          print(f"The model {filename} already exists")    


    os.chdir('/notebooks/sd/stable-diffusion-webui/extensions')
    if not os.path.exists("sd-webui-controlnet"):
      call('git clone https://github.com/Mikubill/sd-webui-controlnet.git', shell=True)
      os.chdir('/notebooks')
    else:
      os.chdir('sd-webui-controlnet')
      call('git reset --hard', shell=True, stdout=open('/dev/null', 'w'), stderr=open('/dev/null', 'w'))
      call('git pull', shell=True, stdout=open('/dev/null', 'w'), stderr=open('/dev/null', 'w'))
      os.chdir('/notebooks')

    mdldir="/notebooks/sd/stable-diffusion-webui/extensions/sd-webui-controlnet/models"
    for filename in os.listdir(mdldir):
      if "_sd14v1" in filename:
        renamed = re.sub("_sd14v1", "-fp16", filename)
        os.rename(os.path.join(mdldir, filename), os.path.join(mdldir, renamed))

    call('wget -q -O CN_models.txt https://github.com/TheLastBen/fast-stable-diffusion/raw/main/AUTOMATIC1111_files/CN_models.txt', shell=True)
    call('wget -q -O CN_models_v2.txt https://github.com/TheLastBen/fast-stable-diffusion/raw/main/AUTOMATIC1111_files/CN_models_v2.txt', shell=True)
    
    with open("CN_models.txt", 'r') as f:
        mdllnk = f.read().splitlines()
    with open("CN_models_v2.txt", 'r') as d:
        mdllnk_v2 = d.read().splitlines()
    call('rm CN_models.txt CN_models_v2.txt', shell=True)

    if ControlNet_Model == "All" or ControlNet_Model == "all" :     
      for lnk in mdllnk:
          download(lnk, mdldir)
      clear_output()

      
    elif ControlNet_Model == "9":
      mdllnk=list(filter(lambda x: 't2i' in x, mdllnk))
      for lnk in mdllnk:
          download(lnk, mdldir)
      clear_output()        


    elif ControlNet_Model.isdigit() and int(ControlNet_Model)-1<8:
      download(mdllnk[int(ControlNet_Model)-1], mdldir)
      clear_output()
      
    elif ControlNet_Model == "none":
       pass
       clear_output()

    else:
      print('Wrong ControlNet V1 choice, try again')


    if ControlNet_v2_Model == "All" or ControlNet_v2_Model == "all" :
      for lnk_v2 in mdllnk_v2:
          download(lnk_v2, mdldir)
      clear_output()
      done()

    elif ControlNet_v2_Model.isdigit() and int(ControlNet_v2_Model)-1<5:
      download(mdllnk_v2[int(ControlNet_v2_Model)-1], mdldir)
      clear_output()
      done()
    
    elif ControlNet_v2_Model == "none":
       pass
       clear_output()
       done()       

    else:
      print('Wrong ControlNet V2 choice, try again')




def sd(User, Password, Use_localtunnel, model):

    auth=f"--gradio-auth {User}:{Password}"
    if User =="" or Password=="":
      auth=""
      
    if not os.path.exists('/usr/lib/node_modules/localtunnel'):
       call('npm install -g localtunnel  --silent', shell=True, stdout=open('/dev/null', 'w'))
       clear_output()
       
       
    share=''
    call('wget -q -O /usr/local/lib/python3.9/dist-packages/gradio/blocks.py https://raw.githubusercontent.com/TheLastBen/fast-stable-diffusion/main/AUTOMATIC1111_files/blocks.py', shell=True)
    
    if not Use_localtunnel:
      share='--share'
      
    else:
      share=''
      os.chdir('/notebooks')
      call('nohup lt --port 7860 > srv.txt 2>&1 &', shell=True)
      time.sleep(2)
      call("grep -o 'https[^ ]*' /notebooks/srv.txt >srvr.txt", shell=True)
      time.sleep(2)
      srv= getoutput('cat /notebooks/srvr.txt')

      for line in fileinput.input('/usr/local/lib/python3.9/dist-packages/gradio/blocks.py', inplace=True):
        if line.strip().startswith('self.server_name ='):
            line = f'            self.server_name = "{srv[8:]}"\n'
        if line.strip().startswith('self.server_port ='):
            line = '            self.server_port = 443\n'
        if line.strip().startswith('self.protocol = "https"'):
            line = '            self.protocol = "https"\n'
        if line.strip().startswith('if self.local_url.startswith("https") or self.is_colab'):
            line = ''
        if line.strip().startswith('else "http"'):
            line = ''
        sys.stdout.write(line)

      call('rm srv.txt srvr.txt', shell=True)
      
    os.chdir('/notebooks/sd/stable-diffusion-webui/modules')
    call('wget -q -O paths.py https://raw.githubusercontent.com/TheLastBen/fast-stable-diffusion/main/AUTOMATIC1111_files/paths.py', shell=True)
    call("sed -i 's@ui.create_ui().*@ui.create_ui();shared.demo.queue(concurrency_count=999999,status_update_rate=0.1)@' /notebooks/sd/stable-diffusion-webui/webui.py", shell=True)
    call("sed -i 's@/content/gdrive/MyDrive/sd/stablediffusion@/notebooks/sd/stablediffusion@' /notebooks/sd/stable-diffusion-webui/modules/paths.py", shell=True)   
    os.chdir('/notebooks/sd/stable-diffusion-webui')
    clear_output()


    if os.path.isfile(model):
        mdlpth="--ckpt "+model
    else:
        mdlpth="--ckpt-dir "+model


    configf="--disable-console-progressbars --no-half-vae --disable-safe-unpickle --api --no-download-sd-model --xformers --enable-insecure-extension-access --skip-version-check "+auth+" "+share+" "+mdlpth

    return configf
    
    
def done():
    done = widgets.Button(
        description='Done!',
        disabled=True,
        button_style='success',
        tooltip='',
        icon='check'
    )
    display(done)