Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
caizhongang
/
SMPLer-X
like
41
Build error
App
Files
Files
Community
6
a72e32a
SMPLer-X
/
common
/
utils
/
dir.py
onescotch
add huggingface implementation
2de1f98
10 months 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)