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
- Extracted generation config from sub-class of `Text2ImagePipeline` to
be a separate class `ImageGenerationConfig`
- The same for scheduler
- Added an ability to load encoder part inside `AutoencoderKL`
- Renamed public folder from `text2image` to more generic
`image_generation`
Copy file name to clipboardexpand all lines: .github/workflows/stable_diffusion_1_5_cpp.yml
+4-4
Original file line number
Diff line number
Diff line change
@@ -77,15 +77,15 @@ jobs:
77
77
run: |
78
78
source ${{ env.OV_INSTALL_DIR }}/setupvars.sh
79
79
${{ env.build_dir }}/samples/cpp/text2image/lora_stable_diffusion ./models/dreamlike-art-dreamlike-anime-1.0/FP16 "curly-haired unicorn in the forest, anime, line" ./models/soulcard.safetensors 0.7
80
-
80
+
81
81
- name: Run Python main app
82
82
run: |
83
83
source openvino_sd_cpp/bin/activate
84
84
source ./ov/setupvars.sh
85
85
python ./samples/python/text2image/main.py ./models/dreamlike-art-dreamlike-anime-1.0/FP16 "cyberpunk cityscape like Tokyo New York with tall buildings at dusk golden hour cinematic lighting"
86
86
env:
87
87
PYTHONPATH: ${{ env.build_dir }}
88
-
88
+
89
89
- name: Run Python LoRA app
90
90
run: |
91
91
source openvino_sd_cpp/bin/activate
@@ -120,7 +120,7 @@ jobs:
120
120
with:
121
121
python-version: ${{ env.PYTHON_VERSION }}
122
122
cache: 'pip'
123
-
123
+
124
124
- name: Build app
125
125
run: |
126
126
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
@@ -148,7 +148,7 @@ jobs:
148
148
"${{ env.build_dir }}/samples/cpp/text2image/Release/stable_diffusion.exe ./models/dreamlike-art-dreamlike-anime-1.0/FP16 'cyberpunk cityscape like Tokyo New York with tall buildings at dusk golden hour cinematic lighting'"
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -192,7 +192,7 @@ def main():
192
192
Code below requires installation of C++ compatible package (see [here](https://docs.openvino.ai/2024/get-started/install-openvino/install-openvino-genai.html#archive-installation) for additional setup details, or this blog for full instruction [How to Build OpenVINO™ GenAI APP in C++](https://medium.com/openvino-toolkit/how-to-build-openvino-genai-app-in-c-32dcbe42fa67)
0 commit comments