We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a7e9f1 commit d5ce552Copy full SHA for d5ce552
.github/workflows/build_documentation.yml
@@ -13,6 +13,7 @@ jobs:
13
with:
14
commit_sha: ${{ github.sha }}
15
package: diffusers
16
+ notebook_folder: diffusers_doc
17
languages: en ko
18
secrets:
19
token: ${{ secrets.HUGGINGFACE_PUSH }}
docs/source/_config.py
@@ -0,0 +1,9 @@
1
+# docstyle-ignore
2
+INSTALL_CONTENT = """
3
+# Diffusers installation
4
+! pip install diffusers transformers datasets accelerate
5
+# To install from source instead of the last release, comment the command above and uncomment the following one.
6
+# ! pip install git+https://github.com/huggingface/diffusers.git
7
+"""
8
+
9
+notebook_first_cells = [{"type": "code", "content": INSTALL_CONTENT}]
0 commit comments