You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/async_img_sd_IG.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -328,7 +328,7 @@ cd deploy
328
328
This script will:
329
329
330
330
* Install the necessary runtimes and tools.
331
-
* Create an S3 bucket, download the Stable Diffusion 1.5 foundation model from [HuggingFace](https://huggingface.co/runwayml/stable-diffusion-v1-5){:target="_blank"}, and place it in the bucket.
331
+
* Create an S3 bucket, download the Stable Diffusion XL-Turbo foundation model from [HuggingFace](https://huggingface.co/stabilityai/sdxl-turbo){:target="_blank"}, and place it in the bucket.
332
332
* Create an EBS snapshot containing the SD Web UI image using our provided sample image.
333
333
* Create a Stable Diffusion guidance with the SD Web UI runtime.
334
334
@@ -679,7 +679,7 @@ The configuration for This guidance is stored in the `config.yaml` file. We prov
679
679
- name: "sdruntime" # Required parameter, the name of the runtime, cannot be the same as other runtimes
680
680
namespace: "default" # Required parameter, the Kubernetes namespace where the runtime is located, not recommended to place in the same namespace as other runtimes
681
681
type: "sdwebui" # Required parameter, the type of this runtime, currently only supports "sdwebui" and "comfyui"
682
-
modelFilename: "v1-5-pruned-emaonly.safetensors" # (SD Web UI) Name of the model used by this runtime, cannot be the same as other runtimes
682
+
modelFilename: "sd_xl_turbo_1.0.safetensors" # (SD Web UI) Name of the model used by this runtime, cannot be the same as other runtimes
683
683
dynamicModel: false # (SD Web UI) Whether this runtime allows dynamic model loading
684
684
```
685
685
@@ -694,7 +694,7 @@ The configuration for This guidance is stored in the `config.yaml` file. We prov
694
694
- name: "sdruntime"
695
695
namespace: "default"
696
696
type: "sdwebui"
697
-
modelFilename: "v1-5-pruned-emaonly.safetensors"
697
+
modelFilename: "sd_xl_turbo_1.0.safetensors"
698
698
dynamicModel: false
699
699
chartRepository: "" # Optional parameter, if you built the Helm Chart, enter the address where the Chart is located. Include the protocol prefix (oci:// or https://)
700
700
chartVersion: "" # Optional parameter, if you built the Helm Chart, enter the version of the Chart
@@ -719,7 +719,7 @@ The configuration for This guidance is stored in the `config.yaml` file. We prov
719
719
- name: "sdruntime"
720
720
namespace: "default"
721
721
type: "sdwebui"
722
-
modelFilename: "v1-5-pruned-emaonly.safetensors"
722
+
modelFilename: "sd_xl_turbo_1.0.safetensors"
723
723
extraValues:
724
724
karpenter: # Add the following content
725
725
nodeTemplate:
@@ -840,7 +840,7 @@ APIGW:
840
840
modelsRuntime:
841
841
- name: sdruntime
842
842
namespace: "default"
843
-
modelFilename: "v1-5-pruned-emaonly.safetensors"
843
+
modelFilename: "sd_xl_turbo_1.0.safetensors"
844
844
dynamicModel: false
845
845
# chartRepository: "http://example.com/" # If you self-hosted the Helm Chart, uncomment this line and change the value to the address of the Helm Chart (oci:// or http://), otherwise delete this line
846
846
type: sdwebui
@@ -1073,7 +1073,7 @@ v1alpha1
1073
1073
{
1074
1074
"alwayson_scripts": {
1075
1075
"task": "text-to-image", // Required, task type
1076
-
"sd_model_checkpoint": "v1-5-pruned-emaonly.safetensors", // Required, base model name
1076
+
"sd_model_checkpoint": "sd_xl_turbo_1.0.safetensors", // Required, base model name
1077
1077
"id_task": "test-t2i", // Required, task ID, used when uploading result images and returning responses
1078
1078
"save_dir": "outputs" // Required, the prefix (directory name) forthe output filein the S3 bucket
0 commit comments