Spaces:
Running
on
Zero
Running
on
Zero
app.py
CHANGED
@@ -214,4 +214,8 @@ with gr.Blocks() as demo:
|
|
214 |
import torch
|
215 |
print("CUDA Version:", torch.version.cuda)
|
216 |
|
|
|
|
|
|
|
|
|
217 |
demo.launch()
|
|
|
214 |
import torch
|
215 |
print("CUDA Version:", torch.version.cuda)
|
216 |
|
217 |
+
# ubuntuのバージョンをprint
|
218 |
+
import platform
|
219 |
+
print("Ubuntu Version:", platform.linux_distribution())
|
220 |
+
|
221 |
demo.launch()
|