-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix batched client request processing
- Loading branch information
1 parent
3f17aa3
commit ecdbd99
Showing
7 changed files
with
120 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
shortfin/python/shortfin_apps/sd/examples/sdxl_request_bs2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"prompt": [ | ||
" a cat under the snow with blue eyes, covered by snow, cinematic style, medium shot, professional photo, animal", | ||
" a cat under the snow with green eyes, covered by snow, cinematic style, medium shot, professional photo, animal" | ||
], | ||
"neg_prompt": "Watermark, blurry, oversaturated, low resolution, pollution", | ||
"height": 1024, | ||
"width": 1024, | ||
"steps": 20, | ||
"guidance_scale": [ | ||
7.5, | ||
7.9 | ||
], | ||
"seed": 0, | ||
"output_type": [ | ||
"base64" | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
shortfin/python/shortfin_apps/sd/examples/sdxl_request_bs4.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"prompt": [ | ||
" a cat under the snow with blue eyes, covered by snow, cinematic style, medium shot, professional photo, animal", | ||
" a cat under the snow with red eyes, covered by snow, cinematic style, medium shot, professional photo, animal", | ||
" a dog under the snow with brown eyes, covered by snow, cinematic style, medium shot, professional photo, animal", | ||
" a cat under the snow with green eyes, covered by snow, cinematic style, medium shot, professional photo, animal" | ||
], | ||
"neg_prompt": "Watermark, blurry, oversaturated, low resolution, pollution", | ||
"height": 1024, | ||
"width": 1024, | ||
"steps": 20, | ||
"guidance_scale": [ | ||
7.5, | ||
7.9, | ||
7.5, | ||
7.5 | ||
], | ||
"seed": 0, | ||
"output_type": [ | ||
"base64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters