Update app.py
Browse files
app.py
CHANGED
|
@@ -9,6 +9,9 @@ from matplotlib import pyplot as plt
|
|
| 9 |
from celle_main import instantiate_from_config
|
| 10 |
from omegaconf import OmegaConf
|
| 11 |
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
class model:
|
| 14 |
def __init__(self):
|
|
|
|
| 9 |
from celle_main import instantiate_from_config
|
| 10 |
from omegaconf import OmegaConf
|
| 11 |
|
| 12 |
+
files = [f for f in os.listdir('.') if os.path.isfile(f)]
|
| 13 |
+
for f in files:
|
| 14 |
+
print(f)
|
| 15 |
|
| 16 |
class model:
|
| 17 |
def __init__(self):
|