Report the number of samples in the test set
Browse files
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(
|