Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
duyle2408
/
SMPLer-X
like
0
arxiv:
2309.17448
arxiv:
2501.09782
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
main
SMPLer-X
/
common
/
utils
/
dir.py
duyle2408
upload common
0469c23
verified
4 months ago
Raw
Download with hf CLI
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)