Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
zoanhy
/
test_ctn
like
0
Build error
App
Files
Files
Community
main
test_ctn
/
utils.py
zoanhy
Upload 16 files
fc5e70f
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
201 Bytes
import
random
from
settings
import
MAX_SEED
def
randomize_seed_fn
(
seed:
int
, randomize_seed:
bool
) ->
int
:
if
randomize_seed:
seed = random.randint(
0
, MAX_SEED)
return
seed