Sam Edwards

Results 9 comments of Sam Edwards

I had same issue, check that your IAM role have CloudFormation in it's trust policy

I tried below `docker-compose.yaml` ```yaml version: "3.9" services: fastchat-controller: build: context: . dockerfile: Dockerfile image: fastchat:latest ports: - "21001:21001" entrypoint: ["python3.9", "-m", "fastchat.serve.controller", "--host", "0.0.0.0", "--port", "21001"] fastchat-model-worker: build: context:...

Got it working after few changes: ```yaml version: "3.9" services: fastchat-controller: build: context: . dockerfile: Dockerfile image: fastchat:latest ports: - "21001:21001" entrypoint: ["python3.9", "-m", "fastchat.serve.controller", "--host", "0.0.0.0", "--port", "21001"] fastchat-model-worker:...

Same for me, I am host n8n docker container on fargate > ALB > CloudFront and if I connect through CloudFront I get the connection lost error and "Invalid origin!"...

> Same for me, I am host n8n docker container on fargate > ALB > CloudFront and if I connect through CloudFront I get the connection lost error and "Invalid...

> Hi @samadwar do you have a single file version of Wan Animate we can use to test this PR? yes, https://huggingface.co/QuantStack/Wan2.2-Animate-14B-GGUF/blob/main/Wan2.2-Animate-14B-Q4_K_M.gguf or any GGUF file in https://huggingface.co/QuantStack/Wan2.2-Animate-14B-GGUF or any...

> Hi @samadwar, thanks for the PR! Would you be able to share an example of a code snippet which uses `WanAnimateTransformer3DModel.from_single_file`? I tried to test the PR using the...

Code I am using: ```python import torch import numpy as np from diffusers import AutoencoderKLWan, GGUFQuantizationConfig from diffusers import WanAnimatePipeline, WanAnimateTransformer3DModel from diffusers.utils import export_to_video, load_image, load_video import os from...