Jun Kwan
10/14/2022, 11:34 AMfinal_img = Image.merge(
"YCbCr",
[
img_out_y,
img_cb.resize(img_out_y.size, Image.BICUBIC),
img_cr.resize(img_out_y.size, Image.BICUBIC),
],
).convert("RGB")
img_path = (
Path("cat_superres_with_ort.jpg")
)
final_img.save(img_path)
Where can I find cat_superres_with_ort.jpg? Thanks!Samhita Alla
img_path = "cat_superres_with_ort.jpg"
.Jun Kwan
10/14/2022, 12:00 PMSamhita Alla
Jun Kwan
10/14/2022, 12:04 PMflytectl sandbox start --source .
flytectl sandbox exec -- docker build . --tag "my_flyte_project:v1"
pyflyte --pkgs example package --image "my_flyte_project:v1"
flytectl register files --project flytesnacks --domain development --archive flyte-package.tgz --version v1
pyflyte run --remote example.py wf --image "my_flyte_project:v1"
@Samhita Alla I was trying to deploy to my local servercat_superres_with_ort.jpg
Samhita Alla
Jun Kwan
10/14/2022, 12:10 PMSamhita Alla
Jun Kwan
10/14/2022, 12:36 PMSamhita Alla
Jun Kwan
10/14/2022, 1:06 PMSamhita Alla
Jun Kwan
10/14/2022, 1:13 PMSamhita Alla
Jun Kwan
10/14/2022, 1:17 PM