From 9a45069960086ced523aff426fc0a7623e839b0d Mon Sep 17 00:00:00 2001 From: Julien Vignoud Date: Wed, 26 Aug 2026 13:58:37 +0200 Subject: [PATCH 01/12] fix: new lus_covid URL --- datasets/populate | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/datasets/populate b/datasets/populate index 17a7d482c..41156afc0 100755 --- a/datasets/populate +++ b/datasets/populate @@ -10,10 +10,8 @@ curl 'https://storage.googleapis.com/deai-313515.appspot.com/example_training_da # lungs ultrasound mkdir -p lus_covid -curl 'https://drive.switch.ch/index.php/s/zM5ZrUWK3taaIly/download' > archive.zip -ln -fs lus_covid DeAI-testimages # redirect top level dir -unzip -u archive.zip -rm archive.zip DeAI-testimages +curl 'https://storage.googleapis.com/deai-313515.appspot.com/lus_covid.tar.gz'| + tar -xz # wikitext mkdir -p wikitext From 11b2909f0cbaad273b6e36894ebe5f31834bd37d Mon Sep 17 00:00:00 2001 From: Julien Vignoud Date: Wed, 26 Aug 2026 12:31:07 +0200 Subject: [PATCH 02/12] fix: use tailwind's theme max-w-card instead of hardcoding 700px --- webapp/src/assets/css/tailwind.css | 5 +++++ webapp/src/components/dataset_input/DataDescription.vue | 2 +- webapp/src/components/dataset_input/DatasetInput.vue | 2 +- .../dataset_input/LabeledImageDatasetInput/index.vue | 4 +++- webapp/src/components/pages/TaskList.vue | 6 +++--- webapp/src/components/testing/PredictSteps.vue | 2 +- webapp/src/components/testing/TestSteps.vue | 4 ++-- webapp/src/components/training/TrainerDashboard.vue | 2 +- webapp/src/components/training/TrainingDescription.vue | 2 +- webapp/src/components/training/TrainingFinished.vue | 4 +++- webapp/src/components/training/TrainingInformation.vue | 2 +- 11 files changed, 22 insertions(+), 13 deletions(-) diff --git a/webapp/src/assets/css/tailwind.css b/webapp/src/assets/css/tailwind.css index e66dc68c1..a578db524 100644 --- a/webapp/src/assets/css/tailwind.css +++ b/webapp/src/assets/css/tailwind.css @@ -25,4 +25,9 @@ --color-heading-light: #334155; --color-heading-dark: #fff; + + /* width of a single content card, the page's content column */ + --container-card: 700px; + /* two cards side by side, separated by `cards-gap` at md and above */ + --container-cards-2: calc(2 * 700px + 2rem); } diff --git a/webapp/src/components/dataset_input/DataDescription.vue b/webapp/src/components/dataset_input/DataDescription.vue index 0382548a6..af41e8d73 100644 --- a/webapp/src/components/dataset_input/DataDescription.vue +++ b/webapp/src/components/dataset_input/DataDescription.vue @@ -1,5 +1,5 @@