Skip to content
代码片段 群组 项目
提交 4f2a4a36 编辑于 作者: storyicon's avatar storyicon
浏览文件

feat: fix randn found element of type float at pos 2


Signed-off-by: default avatarstoryicon <storyicon@foxmail.com>
上级 4afaaf8a
No related branches found
No related tags found
无相关合并请求
......@@ -110,7 +110,7 @@ class ImageRNG:
self.is_first = True
def first(self):
noise_shape = self.shape if self.seed_resize_from_h <= 0 or self.seed_resize_from_w <= 0 else (self.shape[0], self.seed_resize_from_h // 8, self.seed_resize_from_w // 8)
noise_shape = self.shape if self.seed_resize_from_h <= 0 or self.seed_resize_from_w <= 0 else (self.shape[0], int(self.seed_resize_from_h) // 8, int(self.seed_resize_from_w // 8))
xs = []
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册