Update app.py
Browse files
app.py
CHANGED
|
@@ -27,7 +27,7 @@ def submit(intelligibility, naturalness, expressiveness):
|
|
| 27 |
|
| 28 |
writer.writerow([audio_a_path, audio_b_path, intelligibility, naturalness, expressiveness])
|
| 29 |
|
| 30 |
-
return "Thank you for your feedback! Data saved
|
| 31 |
except Exception as e:
|
| 32 |
return f"Error: {e}"
|
| 33 |
|
|
|
|
| 27 |
|
| 28 |
writer.writerow([audio_a_path, audio_b_path, intelligibility, naturalness, expressiveness])
|
| 29 |
|
| 30 |
+
return f"Thank you for your feedback! Data saved to {os.path.abspath(csv_file_path)}"
|
| 31 |
except Exception as e:
|
| 32 |
return f"Error: {e}"
|
| 33 |
|