Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1007,10 +1007,10 @@ with ui.navset_card_tab(id="tab"):
|
|
1007 |
@output
|
1008 |
@render.plot
|
1009 |
def plot_training_loss():
|
1010 |
-
if csv_file() is None:
|
1011 |
-
|
1012 |
|
1013 |
-
df = pd.read_csv(
|
1014 |
|
1015 |
filtered_df = df[
|
1016 |
(df["param_type"].isin(param_type()))
|
|
|
1007 |
@output
|
1008 |
@render.plot
|
1009 |
def plot_training_loss():
|
1010 |
+
# if csv_file() is None:
|
1011 |
+
# return None
|
1012 |
|
1013 |
+
df = pd.read_csv('results - denseformer.csv')
|
1014 |
|
1015 |
filtered_df = df[
|
1016 |
(df["param_type"].isin(param_type()))
|