Denghui

Results 3 comments of Denghui

> 您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看[官网API文档](https://www.paddlepaddle.org.cn/documentation/docs/zh/api_cn/index_cn.html)、[常见问题](https://www.paddlepaddle.org.cn/documentation/docs/zh/faq/index_cn.html)、[历史Issue](https://github.com/PaddlePaddle/Paddle/issues)、[AI社区](https://ai.baidu.com/forum/topic/list/168)来寻求解答。祝您生活愉快~ > > Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make...

Hi all, just for a memo, PyTorch is running well on my machine too. By the way, I found Pr. Ye and I both used python3.7 or the conda environment....

I fixed this bug, by doing this: edit file: `modules/sd_samplers_common.py` change line35: ```python x_sample = sd_vae_approx.model()(sample.to(devices.device, devices.dtype).unsqueeze(0))[0].detach() ``` to: ```python sample2 = sample.to(devices.device, devices.dtype).unsqueeze(0) model = sd_vae_approx.model().to(devices.device, devices.dtype) x_sample =...