浏览代码

RNG: Make all elements of shape `int`s

catboxanon 2 年之前
父节点
当前提交
5b28b7dbc7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/rng.py

+ 1 - 1
modules/rng.py

@@ -98,7 +98,7 @@ def slerp(val, low, high):
 
 
 class ImageRNG:
 class ImageRNG:
     def __init__(self, shape, seeds, subseeds=None, subseed_strength=0.0, seed_resize_from_h=0, seed_resize_from_w=0):
     def __init__(self, shape, seeds, subseeds=None, subseed_strength=0.0, seed_resize_from_h=0, seed_resize_from_w=0):
-        self.shape = shape
+        self.shape = tuple(map(int, shape))
         self.seeds = seeds
         self.seeds = seeds
         self.subseeds = subseeds
         self.subseeds = subseeds
         self.subseed_strength = subseed_strength
         self.subseed_strength = subseed_strength