Update app.py
Browse files
app.py
CHANGED
|
@@ -26,10 +26,9 @@ except Exception as e:
|
|
| 26 |
leaderboard_file = "leaderboard.csv"
|
| 27 |
if not os.path.exists(leaderboard_file):
|
| 28 |
|
| 29 |
-
sample_data = [
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
pd.DataFrame(sample_data,
|
| 34 |
columns=["Model_Name", "WER", "CER", "Combined_Score", "timestamp"]).to_csv(leaderboard_file, index=False)
|
| 35 |
print(f"Created new leaderboard file with sample data")
|
|
|
|
| 26 |
leaderboard_file = "leaderboard.csv"
|
| 27 |
if not os.path.exists(leaderboard_file):
|
| 28 |
|
| 29 |
+
sample_data = [
|
| 30 |
+
["MALIBA-AI/bambara-asr-v1", 0.2264, 0.1094, 0.1922, "2025-03-15 10:30:45"],
|
| 31 |
+
]
|
|
|
|
| 32 |
pd.DataFrame(sample_data,
|
| 33 |
columns=["Model_Name", "WER", "CER", "Combined_Score", "timestamp"]).to_csv(leaderboard_file, index=False)
|
| 34 |
print(f"Created new leaderboard file with sample data")
|