We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1739db8 commit ff1cb5dCopy full SHA for ff1cb5d
openml_OS/models/api/v1/Api_data.php
@@ -842,6 +842,9 @@ private function data($data_id) {
842
if ($data_status != false) {
843
$dataset->status = $data_status->status;
844
}
845
+ // The BASE_URL check prevents servering parquet urls from the test server,
846
+ // which is needed as long as the test server does not have its own dedicated
847
+ // MinIO with parquet files. TODO: Remove this after running MinIO on test
848
if ($dataset->format != 'Sparse_ARFF' && BASE_URL != "https://test.openml.org/") {
849
$bracket = sprintf('%04d', floor($data_id / 10000));
850
$padded_id = sprintf('%04d', $data_id);
0 commit comments