Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hysts/ControlNet-v1-1
vakilrathod67
/
ControlNet
like
0
Runtime error
App
Files
Files
Community
d5479f6
ControlNet
/
utils.py
hysts
HF staff
Add files
a660631
over 1 year ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
random
def
randomize_seed_fn
(
seed:
int
, randomize_seed:
bool
) ->
int
:
if
randomize_seed:
seed = random.randint(
0
,
1000000
)
return
seed