From de2ff0735223b27a176a83c149d14b91d64f9f7e Mon Sep 17 00:00:00 2001 From: Sylvain Lesage Date: Fri, 25 Mar 2022 14:54:59 +0100 Subject: [PATCH] Update blocked datasets (#187) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: 🎸 block two more datasets * style: 💄 sort the datasets to make it easier to maintain --- src/datasets_preview_backend/constants.py | 24 ++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/datasets_preview_backend/constants.py b/src/datasets_preview_backend/constants.py index 745220806b..f1a8c4b047 100644 --- a/src/datasets_preview_backend/constants.py +++ b/src/datasets_preview_backend/constants.py @@ -31,24 +31,26 @@ # these datasets take too much time, we block them beforehand DATASETS_BLOCKLIST: List[str] = [ - "imthanhlv/binhvq_news21_raw", - "SaulLu/Natural_Questions_HTML_Toy", - "SaulLu/Natural_Questions_HTML_reduced_all", - "z-uo/squad-it", - "kiyoung2/aistage-mrc", - "clips/mqa", "Alvenir/nst-da-16khz", + "bigscience/P3", + "clips/mqa", + "echarlaix/gqa-lxmert", + "echarlaix/vqa-lxmert", "fractalego/QA_to_statements", + "hyperpartisan_news_detection", + "imthanhlv/binhvq_news21_raw", + "Graphcore/gqa-lxmert", + "Graphcore/vqa-lxmert", + "kiyoung2/aistage-mrc", "lewtun/gem-multi-dataset-predictions", "lukesjordan/worldbank-project-documents", + "math_dataset", "midas/ldke3k_medium", "midas/ldke3k_small", "midas/ldkp3k_small", "qr/cefr_book_sentences", - "hyperpartisan_news_detection", - "math_dataset", + "SaulLu/Natural_Questions_HTML_reduced_all", + "SaulLu/Natural_Questions_HTML_Toy", "unicamp-dl/mmarco", - "echarlaix/gqa-lxmert", - "Graphcore/gqa-lxmert", - "bigscience/P3", + "z-uo/squad-it", ]