Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import torch
|
| 2 |
import gradio as gr
|
| 3 |
from torchvision.transforms import v2 as transforms
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
|
| 3 |
+
current_directory = os.getcwd()
|
| 4 |
+
print(current_directory)
|
| 5 |
+
|
| 6 |
+
current_directory_contents = os.listdir('.')
|
| 7 |
+
print(current_directory_contents)
|
| 8 |
+
|
| 9 |
+
exit()
|
| 10 |
+
|
| 11 |
import torch
|
| 12 |
import gradio as gr
|
| 13 |
from torchvision.transforms import v2 as transforms
|