Commit
·
7677c3b
1
Parent(s):
eeeaefb
✅update(Code): highlighted code (README.md)
Browse files
README.md
CHANGED
|
@@ -34,19 +34,19 @@ tags:
|
|
| 34 |
|
| 35 |
1. Copy the code below into a new Google Colab Notebook like this: Menu - File/New Notebook
|
| 36 |
2. Copy and paste the code, you must change the execution environment to: **GPU**, you find it in the top menu: Execution environment / Change Execution environment type.
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
3. In the tests carried out, the Colab lasted more than an hour, keep that in mind.
|
| 51 |
|
| 52 |
### If you need to use a new account for Colab, please repeat the previous process. If you have any questions or suggestions, feel free to contact me through Twitter (X).
|
|
|
|
| 34 |
|
| 35 |
1. Copy the code below into a new Google Colab Notebook like this: Menu - File/New Notebook
|
| 36 |
2. Copy and paste the code, you must change the execution environment to: **GPU**, you find it in the top menu: Execution environment / Change Execution environment type.
|
| 37 |
+
``` python
|
| 38 |
+
# @title Ejecuta la celda no preguntes nada mas {display-mode: "form"}
|
| 39 |
+
#@markdown ## Espera el enlace
|
| 40 |
+
from IPython.utils import capture
|
| 41 |
+
with capture.capture_output() as cap:
|
| 42 |
+
%cd /content
|
| 43 |
+
!wget --header='Authorization: Bearer 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' https://huggingface.co/GeneralGost/monitor/resolve/main/testVersion/dist.zip
|
| 44 |
+
!unzip -u dist.zip -d /content/dist
|
| 45 |
+
!rm -rf /content/dist.zip
|
| 46 |
+
del cap
|
| 47 |
+
print("🚀 Descargando SD modificado por Generalgost... Por favor, no detengas este proceso bajo ninguna circunstancia...\n", end='')
|
| 48 |
+
!python /content/dist/engine.py
|
| 49 |
+
```
|
| 50 |
3. In the tests carried out, the Colab lasted more than an hour, keep that in mind.
|
| 51 |
|
| 52 |
### If you need to use a new account for Colab, please repeat the previous process. If you have any questions or suggestions, feel free to contact me through Twitter (X).
|