浏览代码

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

Signed-off-by: storyicon <storyicon@foxmail.com>
storyicon 1 年之前
父节点
当前提交
4f2a4a3615
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/rng.py

+ 1 - 1
modules/rng.py

@@ -110,7 +110,7 @@ class ImageRNG:
         self.is_first = True
         self.is_first = True
 
 
     def first(self):
     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 = []
         xs = []