Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hysts/Shap-E
trumpet
/
attempt
like
0
Sleeping
App
Files
Files
Community
main
attempt
/
utils.py
trumpet
Duplicate from hysts/Shap-E
1c26162
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
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