Spaces:
Sleeping
Sleeping
Update dataset_previews.py
Browse files- dataset_previews.py +1 -7
dataset_previews.py
CHANGED
@@ -111,10 +111,4 @@ def format_preview_for_display(preview_data: Dict[str, Any]) -> pd.DataFrame:
|
|
111 |
{"Key": "Estimated Evaluation Time", "Value": f"{preview_data['evaluation_time']['total_time_minutes']} minutes (for 2 models on A100)"}
|
112 |
]
|
113 |
|
114 |
-
return pd.DataFrame(rows)
|
115 |
-
|
116 |
-
# Example usage (for testing)
|
117 |
-
if __name__ == "__main__":
|
118 |
-
preview_data = mmlupro_dataset_preview()
|
119 |
-
df = format_preview_for_display(preview_data)
|
120 |
-
print(df)
|
|
|
111 |
{"Key": "Estimated Evaluation Time", "Value": f"{preview_data['evaluation_time']['total_time_minutes']} minutes (for 2 models on A100)"}
|
112 |
]
|
113 |
|
114 |
+
return pd.DataFrame(rows)
|
|
|
|
|
|
|
|
|
|
|
|