Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jingyangcarl
/
matgen
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a2072c0
matgen
/
utils.py
jingyangcarl
init
ce4c1d3
17 days ago
raw
Copy download link
history
blame
Safe
205 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)
# noqa: S311
return
seed