Эх сурвалжийг харах

RNG: Make all elements of shape `int`s

catboxanon 2 жил өмнө
parent
commit
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:
     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.subseeds = subseeds
         self.subseed_strength = subseed_strength