AMR-KELEG commited on
Commit
43faa22
·
1 Parent(s): d356b05

Report the number of samples in the test set

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -29,6 +29,8 @@ with tab1:
29
  dataset = datasets.load_dataset(dataset_name)["test"]
30
  labels = {dialect: dataset[dialect] for dialect in DIALECTS_WITH_LABELS}
31
 
 
 
32
  # Load the models' predictions
33
  try:
34
  model_predictions_rows = datasets.load_dataset(
 
29
  dataset = datasets.load_dataset(dataset_name)["test"]
30
  labels = {dialect: dataset[dialect] for dialect in DIALECTS_WITH_LABELS}
31
 
32
+ print("Loaded the labels, no. of samples:", len(dataset))
33
+
34
  # Load the models' predictions
35
  try:
36
  model_predictions_rows = datasets.load_dataset(