Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rakib023
/
ID_INFO
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ID_INFO
/
utils.py
Rakib023
Create utils.py
758a1eb
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
186 Bytes
import
yaml
import
os
def
read_yaml
(
path
):
with
open
(path)
as
f:
return
yaml.safe_load(f)
def
create_dirs
(
paths
):
for
p
in
paths:
os.makedirs(p, exist_ok=
True
)