vincentmmc

Results 9 comments of vincentmmc

> 您好,请问是在什么场景下用到这个模式呢?为什么需要这个模式? 你好,我是要实现一个无缝铺贴功能用到的这个模式,代码参考:https://github.com/tjm35/asymmetric-tiling-sd-webui/blob/main/scripts/asymmetric_tiling.py 第88、89行。 感谢回复~@lijunliangTG

@lijunliangTG 我遇到的情况是我想用oneflow.nn.functional.pad的circular mode但是oneflow提示还不支持,我想问这个模式有没有计划支持? 以下是我的调试代码 `import torch import oneflow torch_ts = torch.randn((1,1,2,3)) torch_ts_circular = torch.nn.functional.pad(torch_ts,(1,1,0,0),mode='circular') print(torch_ts) print(torch_ts_circular) oneflow_ts = oneflow.randn((1,1,2,3)) oneflow_ts_circular = oneflow.nn.functional.pad(oneflow_ts,(1,1,0,0),mode='circular') print(oneflow_ts) print(oneflow_ts_circular)` 以下是输出结果 `tensor([[[[ 1.2974, -0.3249, -0.2213], [-0.1191,...

> 我正在尝试实现 thanks~~

你好,请问有进展吗?@lijunliangTG

你好,请问有进展了吗?@lijunliangTG