sudoping01 commited on
Commit
53036ab
·
verified ·
1 Parent(s): 05a3a7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -26,10 +26,10 @@ except Exception as e:
26
  leaderboard_file = "leaderboard.csv"
27
  if not os.path.exists(leaderboard_file):
28
  # Create a new leaderboard with sample data for testing
29
- sample_data = [
30
- ["MALIBA-AI/bambara-asr-v1", 0.2264, 0.1094, 0.1922, "2025-03-15 10:30:45"],
31
- ["whisper-large-v3-bambara", 0.3120, 0.1870, 0.2745, "2025-02-20 14:22:33"]
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
  # Create a new leaderboard with sample data for testing
29
+ sample_data = []
30
+ # ["MALIBA-AI/bambara-asr-v1", 0.2264, 0.1094, 0.1922, "2025-03-15 10:30:45"],
31
+ # ["whisper-large-v3-bambara", 0.3120, 0.1870, 0.2745, "2025-02-20 14:22:33"]
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")