Linaqruf / sd-notebook-collection

210 stars 44 forks source link

REVERT CHANGES #71

Closed Linaqruf closed 11 months ago

Linaqruf commented 11 months ago

I reverted both packages and the Colab notebook to the last stable version because the current one has a lot of bugs. For now, I don't have time to debug it.

Please refrain from updating the webui and extensions for the time being, thanks!

Honestly, I lost interest since Google Colab banned my notebook string. I'm going to create Comfy UI Colab with the same approach later instead.

Please understand.

aripsam commented 11 months ago

This is the best notebook that exists out there so thanks for your work. Looking forward to the comfy notebook.

Lucascoolsouza commented 11 months ago

i found a fix to still use the collab without the google warning, in this booth lines. repo_dir= os.path.join(root_dir, "cagliostro-colab-ui") output_drive_folder="cagliostro-colab-ui/outputs" #@param {type:'string'} change cagliostro-colab-ui to "anyname"-ui Screenshot_300

Lucascoolsouza commented 11 months ago

the problem just still in folder name, that is cagliostro-colab-ui, i can't rename for now edit: nah, i found another way, no way that's just work L M A O , same, in repo_dir=, and output_drive_folder= image

andersenryu3 commented 11 months ago

Could anyone explain to me how to fix the disconnecting problem that I have mentioned earlier in the Issues? And could you please fix this problem dev?

BinaryQuantumSoul commented 11 months ago

Honestly, I lost interest since Google Colab banned my notebook string

Actually, it means your notebook is important enough that Google had to block it. That means people love your work

wattzombie commented 11 months ago

thanks : @Lucascoolsouza

place in the first cell code : "instal cag liostro colab"

and add :

prefix = "cag" suffix = "liostro-colab-ui".

before "# https://github.com/markdown ### Drive Config".

---------------------------------------------------copy------------------------------------------------- `` ################################ COLAB ARGUMENTS GOES HERE

################################ prefix = "cag" suffix = "liostro-colab-ui" https://github.com/markdown ### Drive Config

mount_drive = True # @param {type:'boolean'} output_drive_folder = prefix + suffix #@param {type:'string'} https://github.com/markdown ### Repo Config

repo_type = "Anapnoe" #@param ["AUTOMATIC1111", "AUTOMATIC1111-Dev", "Anapnoe"] update_webui = False # @param {type:'boolean'} update_extensions = False # @param {type:'boolean'} commit_hash = "" # @param {type:'string'} dpmpp_2m_v2_patch = True # @param {type:'boolean'} https://github.com/markdown ### Optimization Config https://github.com/markdown > It's not recommended to set params below to True if you have Colab Pro subscription.

colab_optimizations = True # @param {type:'boolean'} https://github.com/markdown > Specify mobile_optimizations to keep colab tab alive for mobile users

mobile_optimizations = False # @param {type:'boolean'}

################################ DIRECTORY CONFIG

################################ VAR

voldemort, voldy = read("kq6ZmHFU")[:2] ROOT DIR

root_dir = "/content" drive_dir = os.path.join(root_dir, "drive", "MyDrive") repo_dir = os.path.join(root_dir, prefix + suffix) tmp_dir = os.path.join(root_dir, "tmp") patches_dir = os.path.join(root_dir, "patches") deps_dir = os.path.join(root_dir, "deps") fused_dir = os.path.join(root_dir, "fused") ` this is important because colab when identifying "cagliostro" at the time of loading, it starts blocking and errors are displayed.

so far this is the only thing that makes the notebook work well. let's wait for the "master" to come back.