Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
H-Liu1997
/
TANGO
like
294
Running
on
L40S
App
Files
Files
Community
19
320051c
TANGO
/
SMPLer-X
/
common
/
utils
/
dir.py
H-Liu1997
init
31f2f28
29 days ago
raw
Copy download link
history
blame
Safe
182 Bytes
import
os
import
sys
def
make_folder
(
folder_name
):
os.makedirs(folder_name, exist_ok=
True
)
def
add_pypath
(
path
):
if
path
not
in
sys.path:
sys.path.insert(
0
, path)