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 ca8d88f commit 23f89e7Copy full SHA for 23f89e7
Dockerfile
@@ -48,6 +48,9 @@ COPY requirements.txt .
48
RUN --mount=type=cache,target=/root/.cache/pip \
49
pip install --no-cache-dir -r requirements.txt
50
51
+# Copy test input file
52
+COPY test_input.json .
53
+
54
ADD src .
55
56
COPY builder/cache.py /stable-diffusion-webui/cache.py
test_input.json
@@ -0,0 +1,9 @@
1
+{
2
+ "prompt": "a photo of an astronaut riding a horse on mars",
3
+ "negative_prompt": "blurry, bad quality",
4
+ "width": 512,
5
+ "height": 512,
6
+ "num_inference_steps": 20,
7
+ "guidance_scale": 7.5,
8
+ "seed": 42
9
+}
0 commit comments