Results 2 issues of liyown

**Describe the bug** 在设置了 client_body_timeout 300s; client_max_body_size 1024m; 之后还是会上传失败,具体表现是卡在100%很久,然后后显示上传失败,但是不通过代理可以正常上传。 真的找不到原因了,请求协助 **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....'...

你好,非常感谢你的工作,我现在遇到问题,我按照你的代码逻辑抽出了以下代码,但是输入任何照片,输出都是非常大的,都是10-20,请问是什么原因 ```python import cv2 import torch from networks.ssp import ssp from torchvision import transforms from utils.patch import patch_img from PIL import Image # 加载模型 model = ssp().cuda() model.load_state_dict(torch.load('models/midjourney.pth',weights_only=True)) model.eval() model_sd...