TheLastBen commited on
Commit
2ae6599
1 Parent(s): 1929b7b

Rename Notebooks/Fast-SD-A1111.ipynb to Notebooks/PPS-A1111.ipynb

Browse files
Notebooks/{Fast-SD-A1111.ipynb → PPS-A1111.ipynb} RENAMED
@@ -5,7 +5,7 @@
5
  "id": "6441563f-5e6b-4987-abe3-2a1b8c25a789",
6
  "metadata": {},
7
  "source": [
8
- "## A1111 Paperspace Notebook From https://github.com/TheLastBen/fast-stable-diffusion, if you encounter any issues, feel free to discuss them. [Support](https://ko-fi.com/thelastben)"
9
  ]
10
  },
11
  {
@@ -62,7 +62,7 @@
62
  "id": "ab0521c7-8c68-4ea2-915a-bc3f4b67f6e7",
63
  "metadata": {},
64
  "source": [
65
- "## Model Download/Load"
66
  ]
67
  },
68
  {
@@ -99,12 +99,37 @@
99
  "model=mdl(Original_Model_Version, Path_to_MODEL, MODEL_LINK, safetensors, Temporary_Storage)"
100
  ]
101
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  {
103
  "cell_type": "markdown",
104
  "id": "e0baf0c4-a410-432f-891b-975c7250c77d",
105
  "metadata": {},
106
  "source": [
107
- "## Start Stable-Diffusion"
108
  ]
109
  },
110
  {
@@ -126,8 +151,8 @@
126
  "\n",
127
  "\n",
128
  "#-----------------\n",
129
- "configf=sd(User, Password, Use_localtunnel)\n",
130
- "!python /notebooks/sd/stable-diffusion-webui/webui.py --ckpt $model $configf"
131
  ]
132
  }
133
  ],
@@ -152,4 +177,4 @@
152
  },
153
  "nbformat": 4,
154
  "nbformat_minor": 5
155
- }
 
5
  "id": "6441563f-5e6b-4987-abe3-2a1b8c25a789",
6
  "metadata": {},
7
  "source": [
8
+ "## A1111 Paperspace Notebook From https://github.com/TheLastBen/fast-stable-diffusion, if you encounter any issues, feel free to discuss them."
9
  ]
10
  },
11
  {
 
62
  "id": "ab0521c7-8c68-4ea2-915a-bc3f4b67f6e7",
63
  "metadata": {},
64
  "source": [
65
+ "# Model Download/Load"
66
  ]
67
  },
68
  {
 
99
  "model=mdl(Original_Model_Version, Path_to_MODEL, MODEL_LINK, safetensors, Temporary_Storage)"
100
  ]
101
  },
102
+ {
103
+ "cell_type": "markdown",
104
+ "id": "2f9228f8-3d2b-4964-a848-f75ae1618d9f",
105
+ "metadata": {},
106
+ "source": [
107
+ "# ControlNet"
108
+ ]
109
+ },
110
+ {
111
+ "cell_type": "code",
112
+ "execution_count": null,
113
+ "id": "90c5d7c8-d0dc-43dc-9232-1351e8f80b5e",
114
+ "metadata": {},
115
+ "outputs": [],
116
+ "source": [
117
+ "ControlNet_Model = \"All\"\n",
118
+ "\n",
119
+ "# Download/update ControlNet extension and its models.\n",
120
+ "\n",
121
+ "# All: all models; 1:Canny; 2:Depth; 3:HED; 4:MLSD; 5:Normal; 6:OpenPose; 7:Scribble; 8:Seg; 9:T2iadapter_Keypose; 10:T2iadapter_Seg; 11:T2iadapter_Sketch\n",
122
+ "\n",
123
+ "#--------------------\n",
124
+ "CN(ControlNet_Model)"
125
+ ]
126
+ },
127
  {
128
  "cell_type": "markdown",
129
  "id": "e0baf0c4-a410-432f-891b-975c7250c77d",
130
  "metadata": {},
131
  "source": [
132
+ "# Start Stable-Diffusion"
133
  ]
134
  },
135
  {
 
151
  "\n",
152
  "\n",
153
  "#-----------------\n",
154
+ "configf=sd(User, Password, Use_localtunnel, model)\n",
155
+ "!python /notebooks/sd/stable-diffusion-webui/webui.py $configf"
156
  ]
157
  }
158
  ],
 
177
  },
178
  "nbformat": 4,
179
  "nbformat_minor": 5
180
+ }