Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
duyle2408
/
SMPLer-X2
like
1
arxiv:
2309.17448
arxiv:
2501.09782
Model card
Files
Files and versions
xet
Community
main
SMPLer-X2
/
common
/
utils
/
dir.py
duyle2408
upload common
9b8b2f6
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
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)