Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,7 +30,8 @@ def add_new_eval(
|
|
| 30 |
print(benchmark_type)
|
| 31 |
# Save human and skempi files under ./src/data/representation_vectors using pandas
|
| 32 |
print(human_file)
|
| 33 |
-
|
|
|
|
| 34 |
return None
|
| 35 |
if human_file is not None:
|
| 36 |
human_df = pd.read_csv(human_file)
|
|
|
|
| 30 |
print(benchmark_type)
|
| 31 |
# Save human and skempi files under ./src/data/representation_vectors using pandas
|
| 32 |
print(human_file)
|
| 33 |
+
df = pd.read_csv(human_file)
|
| 34 |
+
print(df.head().to_string())
|
| 35 |
return None
|
| 36 |
if human_file is not None:
|
| 37 |
human_df = pd.read_csv(human_file)
|