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
Spaces:
Duplicated from
dkatz2391/TRELLIS_TextTo3D_Try2
AndyDo0942
/
TRELLIS_TextTo3D_Try2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
PUM4CH3N
commited on
Apr 11, 2025
Commit
177a386
·
1 Parent(s):
ceb457f
Add Env Test
Browse files
Files changed (1)
hide
show
env.py
+10
-0
env.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import spaces
2
+
import os
3
+
import torch
4
+
5
+
@spaces.GPU(duration=5)
6
+
def check():
7
+
print(os.system("nvidia-smi"))
8
+
print(torch.version.cuda)
9
+
10
+
check()