Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
GRATITUD3/ShapERailwayApp
GRATITUD3
/
ShapERailwayAppv2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
31c61a3
ShapERailwayAppv2
/
utils.py
GRATITUD3
Duplicate from GRATITUD3/ShapERailwayApp
31c61a3
about 2 years ago
raw
Copy download link
history
blame
Safe
192 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