From 59faeb415de146e54f226e559d477c39375cd031 Mon Sep 17 00:00:00 2001 From: Alvaro Gonzalez-Jimenez Date: Tue, 28 Jan 2025 16:39:35 +0100 Subject: [PATCH] Initial commit for the webiste with some data in it. --- 404.html | 25 ++ Gemfile | 33 ++ Gemfile.lock | 113 +++++ _config.yml | 57 +++ _data/2023.yml | 101 +++++ _data/2024.yml | 0 _data/schedule.yml | 95 ++++ _layouts/journal_club.html | 13 + _site/404.html | 87 ++++ _site/README.md | 56 +++ _site/about/index.html | 104 +++++ _site/assets/main.css | 649 +++++++++++++++++++++++++++ _site/assets/main.css.map | 1 + _site/assets/minima-social-icons.svg | 33 ++ _site/feed.xml | 1 + _site/index.html | 261 +++++++++++ _site/past-sessions/index.html | 415 +++++++++++++++++ about.markdown | 29 ++ index.markdown | 185 ++++++++ past-sessions.md | 127 ++++++ 20 files changed, 2385 insertions(+) create mode 100644 404.html create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 _config.yml create mode 100644 _data/2023.yml create mode 100644 _data/2024.yml create mode 100644 _data/schedule.yml create mode 100644 _layouts/journal_club.html create mode 100644 _site/404.html create mode 100644 _site/README.md create mode 100644 _site/about/index.html create mode 100644 _site/assets/main.css create mode 100644 _site/assets/main.css.map create mode 100644 _site/assets/minima-social-icons.svg create mode 100644 _site/feed.xml create mode 100644 _site/index.html create mode 100644 _site/past-sessions/index.html create mode 100644 about.markdown create mode 100644 index.markdown create mode 100644 past-sessions.md diff --git a/404.html b/404.html new file mode 100644 index 0000000..086a5c9 --- /dev/null +++ b/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..2c345b8 --- /dev/null +++ b/Gemfile @@ -0,0 +1,33 @@ +source "https://rubygems.org" +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 4.3.4" +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.5" +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.12" +end + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", ">= 1", "< 3" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin] + +# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem +# do not have a Java counterpart. +gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..6b01be3 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,113 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + bigdecimal (3.1.9) + colorator (1.1.0) + concurrent-ruby (1.3.5) + em-websocket (0.5.3) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0) + eventmachine (1.2.7) + ffi (1.17.1) + ffi (1.17.1-arm64-darwin) + ffi (1.17.1-x86_64-darwin) + forwardable-extended (2.6.0) + google-protobuf (4.29.3) + bigdecimal + rake (>= 13) + google-protobuf (4.29.3-arm64-darwin) + bigdecimal + rake (>= 13) + google-protobuf (4.29.3-x86_64-darwin) + bigdecimal + rake (>= 13) + google-protobuf (4.29.3-x86_64-linux) + bigdecimal + rake (>= 13) + http_parser.rb (0.8.0) + i18n (1.14.7) + concurrent-ruby (~> 1.0) + jekyll (4.3.4) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 1.0) + jekyll-sass-converter (>= 2.0, < 4.0) + jekyll-watch (~> 2.0) + kramdown (~> 2.3, >= 2.3.1) + kramdown-parser-gfm (~> 1.0) + liquid (~> 4.0) + mercenary (>= 0.3.6, < 0.5) + pathutil (~> 0.9) + rouge (>= 3.0, < 5.0) + safe_yaml (~> 1.0) + terminal-table (>= 1.8, < 4.0) + webrick (~> 1.7) + jekyll-feed (0.17.0) + jekyll (>= 3.7, < 5.0) + jekyll-sass-converter (3.0.0) + sass-embedded (~> 1.54) + jekyll-seo-tag (2.8.0) + jekyll (>= 3.8, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (2.5.1) + rexml (>= 3.3.9) + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.4) + listen (3.9.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.4.0) + minima (2.5.2) + jekyll (>= 3.5, < 5.0) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (6.0.1) + rake (13.2.1) + rb-fsevent (0.11.2) + rb-inotify (0.11.1) + ffi (~> 1.0) + rexml (3.4.0) + rouge (4.5.1) + safe_yaml (1.0.5) + sass-embedded (1.83.4) + google-protobuf (~> 4.29) + rake (>= 13) + sass-embedded (1.83.4-aarch64-mingw-ucrt) + google-protobuf (~> 4.29) + sass-embedded (1.83.4-arm64-darwin) + google-protobuf (~> 4.29) + sass-embedded (1.83.4-x86_64-cygwin) + google-protobuf (~> 4.29) + sass-embedded (1.83.4-x86_64-darwin) + google-protobuf (~> 4.29) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + unicode-display_width (2.6.0) + webrick (1.9.1) + +PLATFORMS + aarch64-mingw-ucrt + arm64-darwin + ruby + x86_64-cygwin + x86_64-darwin + x86_64-linux + +DEPENDENCIES + http_parser.rb (~> 0.6.0) + jekyll (~> 4.3.4) + jekyll-feed (~> 0.12) + minima (~> 2.5) + tzinfo (>= 1, < 3) + tzinfo-data + wdm (~> 0.1) + +BUNDLED WITH + 2.6.3 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..a9c6ee7 --- /dev/null +++ b/_config.yml @@ -0,0 +1,57 @@ +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. +# +# If you need help with YAML syntax, here are some quick references for you: +# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml +# https://learnxinyminutes.com/docs/yaml/ +# +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. + +title: RISE-MICCAI +email: miccai.rise@gmail.com +description: >- # this means to ignore newlines until "baseurl:" + Journal Club RISE MICCAI. +baseurl: "" # the subpath of your site, e.g. /blog +url: "" # the base hostname & protocol for your site, e.g. http://example.com +twitter_username: RMiccai +github_username: RISE-MICCAI + +collections: + journal_club: + output: true + +# Build settings +theme: minima +plugins: + - jekyll-feed + +# Exclude from processing. +# The following items will not be processed, by default. +# Any item listed under the `exclude:` key here will be automatically added to +# the internal "default list". +# +# Excluded items can be processed by explicitly listing the directories or +# their entries' file path in the `include:` list. +# +# exclude: +# - .sass-cache/ +# - .jekyll-cache/ +# - gemfiles/ +# - Gemfile +# - Gemfile.lock +# - node_modules/ +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ diff --git a/_data/2023.yml b/_data/2023.yml new file mode 100644 index 0000000..d4c218f --- /dev/null +++ b/_data/2023.yml @@ -0,0 +1,101 @@ +- date: "03/06/2023" + speaker: "Charles Delahunt" + email: "charles.delahunt@ghlabs.org" + conference: "NeurIPS 2018" + paper_title: "Attention Is All You Need" + paper_link: "https://arxiv.org/abs/1706.03762" + zoom_link: "https://us04web.zoom.us/j/75026944414?pwd=o6zadhV3PlGxnyufn1EUIQE7UEwDxj.1" + +- date: "14/06/2023" + speaker: "Islem Rekik" + email: "i.rekik@imperial.ac.uk" + conference: "ICLR 2021" + paper_title: "HeteroFL: Computation and Communication Efficient Federated Learning for Heterogeneous Clients" + paper_link: "https://arxiv.org/pdf/2010.01264.pdf" + zoom_link: "https://imperial-ac-uk.zoom.us/j/99487327904?pwd=VUo5Ty91WnM3T0hYT2pOTVhmV2svUT09" + +- date: "28/06/2023" + speaker: "Samra Irshad" + email: "samra@khu.ac.kr" + conference: "ECCV 2022" + paper_title: "STEEX: Steering Counterfactual Explanations with semantics" + paper_link: "https://arxiv.org/pdf/2111.09094.pdf" + zoom_link: "https://zoom.us/j/5651952800?pwd=Sm1WWFdnVjI2dWUrQWxHenRZWkZldz09" + +- date: "12/07/2023" + speaker: "Yasar Mehmood" + email: "fa19-pcs-001@cuilahore.edu.pk" + conference: "CVPR 2023" + paper_title: "Geometric Visual Similarity Learning in 3D Medical Image Self-supervised Pre-training" + paper_link: "https://arxiv.org/pdf/2303.00874.pdf" + zoom_link: "https://meet.google.com/owz-vkkt-fcz" + +- date: "26/07/2023" + speaker: "Miguel López-Pérez" + email: "mlopezp@ugr.es" + conference: "NeurIPS 2020" + paper_title: "Disentangling Human Error from the Ground Truth in Segmentation of Medical Images" + paper_link: "https://arxiv.org/abs/2007.15963" + zoom_link: "https://meet.google.com/djx-kzjo-xmi" + +- date: "06/09/2023" + speaker: "Charles Delahunt" + email: "charles.delahunt@ghlabs.org" + paper_title: "Metrics to guide development of machine learning algorithms for malaria diagnosis: Delahunt, Gachuhi, Horning. 2023" + paper_link: "https://arxiv.org/abs/2209.06947" + zoom_link: null + +- date: "20/09/2023" + speaker: "Ayantika Das" + email: "ee19d422@smail.iitm.ac.in" + conference: "CVPR 2022" + paper_title: "Diffusion Autoencoders: Toward a Meaningful and Decodable Representation" + paper_link: "https://openaccess.thecvf.com/content/CVPR2022/papers/Preechakul_Diffusion_Autoencoders_Toward_a_Meaningful_and_Decodable_Representation_CVPR_2022_paper.pdf" + zoom_link: "https://meet.google.com/aov-oztp-xqk" + +- date: "04/10/2023" + speaker: "Jeya Maria Jose" + email: "jmjose@stanford.edu" + conference: "ICML 2021" + paper_title: "Learning Transferable Visual Models From Natural Language Supervision" + paper_link: "https://arxiv.org/abs/2103.00020" + zoom_link: "https://stanford.zoom.us/j/5307552686?pwd=QWFPRU41eGlKSEJ1OTJ0V1RraFRvZz09" + +- date: "18/10/2023" + speaker: "Soumi Ray" + email: "soumi.ray@vit.ac.in" + paper_title: "Intensity Population based Unsupervised Hemorrhage Segmentation from Brain CT Images" + paper_link: "https://www.sciencedirect.com/science/article/abs/pii/S0957417417308540" + zoom_link: null + +- date: "01/11/2023" + speaker: "Prerak Mody/Mortiz Fuchs" + email: "P.P.Mody@lumc.nl / moritz.fuchs@gris.informatik.tu-darmstadt.de" + conference: "RSNA 2023" + paper_title: "Prediction Variability to Identify Reduced AI Performance in Cancer Diagnosis at MRI and CT" + paper_link: "https://doi.org/10.1148/radiol.230275" + zoom_link: "https://tu-darmstadt.zoom-x.de/j/6533627440?pwd=emZHWkpORTJHbFRhZXlCSHdTa3hmZz09" + +- date: "15/11/2023" + speaker: "Tareen Dawood" + email: "tareen.dawood@kcl.ac.uk" + conference: "MedIA" + paper_title: "Uncertainty aware training to improve deep learning model calibration for classification of cardiac MR images" + paper_link: "https://www.sciencedirect.com/science/article/pii/S1361841523001214" + zoom_link: "https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTgzNjQ2ZmEtNGUyNS00YTE1LWEzNTctOTY2Yjc0YTVjMGVi%40thread.v2/0?context=%7b%22Tid%22%3a%228370cf14-16f3-4c16-b83c-724071654356%22%2c%22Oid%22%3a%22923d2822-52a2-4b77-8367-5d46fb253883%22%7d" + +- date: "29/11/2023" + speaker: "Prosper Oyibo" + email: "p.o.oyibo@tudelft.nl" + conference: "JMI" + paper_title: "Two-stage automated diagnosis framework for urogenital schistosomiasis in microscopy images from low-resource settings" + paper_link: "https://doi.org/10.1117/1.JMI.10.4.044005" + zoom_link: "https://tudelft.zoom.us/j/94685679757" + +- date: "13/12/2023" + speaker: "Tiarna Lee" + email: "tiarna.lee@kcl.ac.uk" + conference: "FAIMI (MICCAI) 2023" + paper_title: "An investigation into the impact of deep learning model choice on sex and race bias in cardiac MR segmentation" + paper_link: "https://arxiv.org/abs/2308.13415" + zoom_link: "https://eur03.safelinks.protection.outlook.com/ap/t-59584e83/?url=https%3A%2F%2Fteams.microsoft.com%2Fl%2Fmeetup-join%2F19%253ameeting_OGZmMjI3ZWItNmMyMi00YzRhLWJlYTgtY2ExZWEyYzQ1ZTNm%2540thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%25228370cf14-16f3-4c16-b83c-724071654356%2522%252c%2522Oid%2522%253a%25223ec8a995-d966-4a22-bfe5-dd9aa782f662%2522%257d&data=05%7C01%7Cesther.puyol_anton%40kcl.ac.uk%7C927f02bd302049e6d8c608dbf4b2dc30%7C8370cf1416f34c16b83c724071654356%7C0%7C0%7C638372821284630655%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2F7sacsbR7gsdvPUPnpYlIbG5jPmxDgfuraqNog564jc%3D&reserved=0" diff --git a/_data/2024.yml b/_data/2024.yml new file mode 100644 index 0000000..e69de29 diff --git a/_data/schedule.yml b/_data/schedule.yml new file mode 100644 index 0000000..cbef9d8 --- /dev/null +++ b/_data/schedule.yml @@ -0,0 +1,95 @@ +- date: "" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "26/07/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "12/07/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "28/06/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "14/06/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "31/05/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "17/05/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "03/05/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "19/04/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "05/04/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "22/03/2025" + speaker: "" + email: "" + conference: "" + paper_title: "" + paper_link: "" + zoom_link: "" + +- date: "08/03/2025" + speaker: "Mengjin Dong" + email: "dmengjin@gmail.com" + conference: "Imaging Neuroscience 2024" + paper_title: "Regional deep atrophy: Using temporal information to automatically identify regions associated with Alzheimer’s disease progression from longitudinal MRI" + paper_link: "https://direct.mit.edu/imag/article/doi/10.1162/imag_a_00294/124226" + zoom_link: "" diff --git a/_layouts/journal_club.html b/_layouts/journal_club.html new file mode 100644 index 0000000..a6cbfd3 --- /dev/null +++ b/_layouts/journal_club.html @@ -0,0 +1,13 @@ + +--- +layout: default +--- +
+

{{ page.title }}

+

Date: {{ page.date }}

+

Author: {{ page.author }}

+

Publication Venue: {{ page.venue }}

+

Link to Paper: {{ page.link }}

+

Zoom Link: {{ page.zoom_link }}

+
+ diff --git a/_site/404.html b/_site/404.html new file mode 100644 index 0000000..e835774 --- /dev/null +++ b/_site/404.html @@ -0,0 +1,87 @@ + + + + + +RISE-MICCAI | Journal Club RISE MICCAI. + + + + + + + + + + + + + + + +
+
+ + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
+ +
+
+ + + diff --git a/_site/README.md b/_site/README.md new file mode 100644 index 0000000..0042c8a --- /dev/null +++ b/_site/README.md @@ -0,0 +1,56 @@ +# Journal-Club + +The RISE Journal Club aims to create a friendly environment to discuss the latest state-of-the-art papers in the areas of medical image analysis, AI and computer vision. The main objective of this bi-weekly reading group is to help you develop/improve your critical and design thinking skills, which are essential skills for researchers and will help you when presenting or writing your own work. + +To date, we have held two editions in which participants joined us remotely from different continents in highly engaging and stimulating sessions. + +During each session, the moderators briefly introduce the paper and then moderate a discussion where everyone is welcome to provide their thoughts and ask any questions on the paper. The topics of the papers will vary, and we will try to cover different areas of medical data analysis, e.g., registration, segmentation, federated learning, fairness, and reinforcement learning —among others. Similarly, we will review papers from the machine and deep learning communities, providing you with a broader overview of the state-of-the-art method. + +For more about RISE-MICCAI and the RISE Journal Club, check our website at http://www.miccai.org/about-miccai/rise-miccai/ + +Follow us on GitHub at https://github.com/RISE-MICCAI + +And join our mailing list to receive updates about our RISE activities at https://bit.ly/2VMPHXc + +## Paper list + +No | Date | Moderator | Title | Link +--- | --- | --- | --- | --- +37 | 14/12/2024 | Mostafa Sharifzadeh| Mitigating Aberration-Induced Noise: A Deep Learning-Based Aberration-to-Aberration Approach | https://arxiv.org/pdf/2308.11149 +36 | 30/11/2024 | Xinrui Yuan| Multi-task Joint Prediction of Infant Cortical Morphological and Cognitive Development | https://link.springer.com/content/pdf/10.1007/978-3-031-43996-4_52.pdf?pdf=inline%20link +35 | 16/11/2024 | Yiyang Xu | Improved 3D Whole Heart Geometry from Sparse CMR Slices | https://www.arxiv.org/abs/2408.07532 +34 | 02/11/2024 | Dewmini Hasara Wickremasinghe | Improving the Scan-rescan Precision of AI-based CMR Biomarker Estimation | https://arxiv.org/abs/2408.11754 +33 | 21/09/2024 | Ahmed Nebli | GRAM: Graph Regularizable Assessment Metric | https://drive.google.com/file/d/1aFCpOkuLw06_bbERqXq6Tu_5mJtPPueL/view?usp=sharing +32 | 07/09/2024 | Paula Feldman | VesselVAE: Recursive Variational Autoencoders for 3D Blood Vessel Synthesis | https://arxiv.org/abs/2307.03592 +31 | 27/07/2024 | Nahal Mirzaie | Weakly-Supervised Drug Efficiency Estimation with Confidence Score: Application to COVID-19 Drug Discovery | https://link.springer.com/chapter/10.1007/978-3-031-43993-3_65 +30 | 13/07/2024 | John Kalkhof | M3D-NCA: Robust 3D Segmentation with Built-In Quality Control | https://arxiv.org/pdf/2309.02954.pdf +29 | 29/06/2024 | Gasper Podobnik | HDilemma: Are Open-Source Hausdorff Distance Implementations Equivalent? | https://link.springer.com/chapter/10.1007/978-3-031-72114-4_30 +28 | 15/06/2024 | DongAo Ma | Foundation Ark: Accruing and Reusing Knowledge for Superior and Robust Performance | https://arxiv.org/abs/2310.09507 +27 | 01/06/2024 | Alvaro Gonzalez-Jimenez | Robust T-Loss for Medical Image Segmentation | https://arxiv.org/abs/2306.00753 +26 | 18/05/2024 | Pamela Guevara | Superficial white matter bundle atlas based on hierarchical fiber clustering over probabilistic tractography data | https://www.sciencedirect.com/science/article/pii/S1053811922006656 +25 | 04/05/2024 | Tareen Dawood | Evaluating the Fairness of Deep Learning Uncertainty Estimates in Medical Image Analysis | https://arxiv.org/pdf/2303.03242 +24 | 20/04/2024 | Islem Rekik | Special session: The journey of a research paper: from writing to review| +23 | 06/04/2024 | Zhen Yuan | Orthogonal annotation benefits barely-supervised medical image segmentation | https://arxiv.org/abs/2303.13090 +22 | 23/03/2024 | Charles Delahunt | Consistent Individualized Feature Attribution for Tree Ensembles | https://arxiv.org/abs/1802.03888 +21 | 09/03/2024 | Charles Delahunt | Understanding metric-related pitfalls in image analysis validation | https://arxiv.org/abs/2302.01790 +20 | 24/02/2024 | Qiang Zhang | Toward Replacing Late Gadolinium Enhancement With Artificial Intelligence Virtual Native Enhancement for Gadolinium-Free Cardiovascular Magnetic Resonance Tissue Characterization in Hypertrophic Cardiomyopathy and Artificial intelligence for contrast-free MRI: Scar assessment in myocardial infarction using deep learning–based virtual native enhancement | https://www.ahajournals.org/doi/10.1161/CIRCULATIONAHA.122.060137 and https://www.ahajournals.org/doi/10.1161/CIRCULATIONAHA.121.054432 +19 | 13/01/2024 | Charles, Andrea, Ahmed, Tareen and Esther| Opening session multi-linguistic: french, spanish, english, arabic | +18 | 13/12/2023 | Tiarna Lee | An investigation into the impact of deep learning model choice on sex and race bias in cardiac MR segmentation | https://arxiv.org/abs/2308.13415 +17 | 29/11/2023 | Prosper Oyibo | Two-stage automated diagnosis framework for urogenital schistosomiasis in microscopy images from low-resource settings | https://doi.org/10.1117/1.JMI.10.4.044005 +16 | 15/11/2023 | Tareen Dawood | Uncertainty aware training to improve deep learning model calibration for classification of cardiac MR images | https://www.sciencedirect.com/science/article/pii/S1361841523001214 +15 | 01/11/2023 | Prerak Mody and Mortiz Fuchs | Prediction Variability to Identify Reduced AI Performance in Cancer Diagnosis at MRI and CT | https://doi.org/10.1148/radiol.230275 +14 | 20/09/2023 | Ayantika Das | Diffusion Autoencoders: Toward a Meaningful and Decodable Representation | https://openaccess.thecvf.com/content/CVPR2022/papers/Preechakul_Diffusion_Autoencoders_Toward_a_Meaningful_and_Decodable_Representation_CVPR_2022_paper.pdf +13 | 06/09/2023 | Charles | Metrics to guide development of machine learning algorithms for malaria diagnosis | https://arxiv.org/abs/2209.06947 +12 | 26/07/2023 | Miguel López-Pérez | Disentangling human error from the ground truth in segmentation of medical images | https://arxiv.org/abs/2007.15963 +11 | 12/07/2023 | Yasar Mehmood | Geometric Visual Similarity Learning in 3D Medical Image Self-supervised Pre-training | https://arxiv.org/abs/2303.00874 +10 | 28/06/2023 | Samra Irshad | STEEX: Steering Counterfactual Explanations with semantics | https://arxiv.org/abs/2111.09094 +9 | 14/06/2023 | Islem Rekik | HeteroFL: Computation and Communication Efficient Federated Learning for Heterogeneous Clients | https://arxiv.org/pdf/2010.01264 +8 | 03/06/2023 | Charles | Attention Is All You Need | https://arxiv.org/abs/1706.03762 +7 | 20/05/2023 | Islem Rekik | On Predicting Generalization using GANs | https://openreview.net/pdf?id=eW5R4Cek6y6 +6 | 06/05/2023 | Charles and Andrea | Grad-CAM: Visual Explanations from Deep Networks via Gradient-based Localization| https://arxiv.org/abs/1404.1100 +5 | 22/04/2023 | Charles Delahunt | A tutorial on Principal Component Analysis | https://arxiv.org/abs/1404.1100 +4 | 08/04/2023 | Charles and Islem | A dirty dozen: 12 p-value misconceptions | http://mcb112.org/w06/Goodman08.pdf +3 | 25/03/2023 | Islem and Charles | Coherent Gradients: An Approach to Understanding Generalization in Gradient Descent-based Optimization | https://openreview.net/pdf?id=ryeFY0EFwS +2 | 11/03/2023 | Charles and Andrea | Imagenet classification with deep convolutional neural networks | https://papers.nips.cc/paper/2012/file/c399862d3b9d6b76c8436e924a68c45b-Paper.pdf +1 | 25/02/2023 | Islem Rekik | Hierarchical Reconstruction of 7T-like Images from 3T MRI Using Multi-level CCA and Group Sparsity | https://link.springer.com/chapter/10.1007/978-3-319-24571-3_79 + diff --git a/_site/about/index.html b/_site/about/index.html new file mode 100644 index 0000000..575f44f --- /dev/null +++ b/_site/about/index.html @@ -0,0 +1,104 @@ + + + + + +About | RISE-MICCAI + + + + + + + + + + + + + + + +
+
+
+ +
+

About

+
+ +
+

Why RISE?

+
    +
  • Researchers of under-represented origins (Africa, Latin America, +South/South-East Asian, and Middle-East) who work in the field of Medical +Image Computing and Computer-Aided Interventions (MICCAI) are barely +represented in the community (~around 2% participation to MICCAI 2020).
  • +
  • Strengthen the presence of minority researchers from Low-to-Middle Income +Countries (LMIC) in MICCAI.
  • +
  • Build collaborative bridges across countries and co-develop international +cutting-edge research projects in medicine with a wider global outreach and +impact.
  • +
+ +

Mission Statement

+
    +
  • Propel inclusiveness and geographic diversity within MICCAI,
  • +
  • Strengthen the presence of minority researchers in Low-to-Middle Income +Countries (LMICs) at MICCAI,
  • +
  • Empower MICCAI researchers in LMICs,
  • +
  • Pave the way for future research stars to rise in LMICs and +under-represented communities, and
  • +
  • Build a strong research network within LMICs as well as across continents +and different parties to help reduce global disparities in health and +imaging.
  • +
+ + +
+ +
+ +
+
+ + + diff --git a/_site/assets/main.css b/_site/assets/main.css new file mode 100644 index 0000000..24643ec --- /dev/null +++ b/_site/assets/main.css @@ -0,0 +1,649 @@ +/** + * Reset some basic elements + */ +body, h1, h2, h3, h4, h5, h6, +p, blockquote, pre, hr, +dl, dd, ol, ul, figure { + margin: 0; + padding: 0; +} + +/** + * Basic styling + */ +body { + font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + color: #111; + background-color: #fdfdfd; + -webkit-text-size-adjust: 100%; + -webkit-font-feature-settings: "kern" 1; + -moz-font-feature-settings: "kern" 1; + -o-font-feature-settings: "kern" 1; + font-feature-settings: "kern" 1; + font-kerning: normal; + display: flex; + min-height: 100vh; + flex-direction: column; +} + +/** + * Set `margin-bottom` to maintain vertical rhythm + */ +h1, h2, h3, h4, h5, h6, +p, blockquote, pre, +ul, ol, dl, figure, +.highlight { + margin-bottom: 15px; +} + +/** + * `main` element + */ +main { + display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */ +} + +/** + * Images + */ +img { + max-width: 100%; + vertical-align: middle; +} + +/** + * Figures + */ +figure > img { + display: block; +} + +figcaption { + font-size: 14px; +} + +/** + * Lists + */ +ul, ol { + margin-left: 30px; +} + +li > ul, +li > ol { + margin-bottom: 0; +} + +/** + * Headings + */ +h1, h2, h3, h4, h5, h6 { + font-weight: 400; +} + +/** + * Links + */ +a { + color: #2a7ae2; + text-decoration: none; +} +a:visited { + color: rgb(22.9483471074, 86.2541322314, 168.5516528926); +} +a:hover { + color: #111; + text-decoration: underline; +} +.social-media-list a:hover { + text-decoration: none; +} +.social-media-list a:hover .username { + text-decoration: underline; +} + +/** + * Blockquotes + */ +blockquote { + color: #828282; + border-left: 4px solid #e8e8e8; + padding-left: 15px; + font-size: 18px; + letter-spacing: -1px; + font-style: italic; +} +blockquote > :last-child { + margin-bottom: 0; +} + +/** + * Code formatting + */ +pre, +code { + font-size: 15px; + border: 1px solid #e8e8e8; + border-radius: 3px; + background-color: #eef; +} + +code { + padding: 1px 5px; +} + +pre { + padding: 8px 12px; + overflow-x: auto; +} +pre > code { + border: 0; + padding-right: 0; + padding-left: 0; +} + +/** + * Wrapper + */ +.wrapper { + max-width: -webkit-calc(800px - (30px * 2)); + max-width: calc(800px - 30px * 2); + margin-right: auto; + margin-left: auto; + padding-right: 30px; + padding-left: 30px; +} +@media screen and (max-width: 800px) { + .wrapper { + max-width: -webkit-calc(800px - (30px)); + max-width: calc(800px - (30px)); + padding-right: 15px; + padding-left: 15px; + } +} + +/** + * Clearfix + */ +.footer-col-wrapper:after, .wrapper:after { + content: ""; + display: table; + clear: both; +} + +/** + * Icons + */ +.svg-icon { + width: 16px; + height: 16px; + display: inline-block; + fill: #828282; + padding-right: 5px; + vertical-align: text-top; +} + +.social-media-list li + li { + padding-top: 5px; +} + +/** + * Tables + */ +table { + margin-bottom: 30px; + width: 100%; + text-align: left; + color: rgb(62.9, 62.9, 62.9); + border-collapse: collapse; + border: 1px solid #e8e8e8; +} +table tr:nth-child(even) { + background-color: rgb(247.3, 247.3, 247.3); +} +table th, table td { + padding: 9.999999999px 15px; +} +table th { + background-color: rgb(239.65, 239.65, 239.65); + border: 1px solid rgb(221.8, 221.8, 221.8); + border-bottom-color: rgb(201.4, 201.4, 201.4); +} +table td { + border: 1px solid #e8e8e8; +} + +/** + * Site header + */ +.site-header { + border-top: 5px solid rgb(66.25, 66.25, 66.25); + border-bottom: 1px solid #e8e8e8; + min-height: 55.95px; + position: relative; +} + +.site-title { + font-size: 26px; + font-weight: 300; + line-height: 54px; + letter-spacing: -1px; + margin-bottom: 0; + float: left; +} +.site-title, .site-title:visited { + color: rgb(66.25, 66.25, 66.25); +} + +.site-nav { + float: right; + line-height: 54px; +} +.site-nav .nav-trigger { + display: none; +} +.site-nav .menu-icon { + display: none; +} +.site-nav .page-link { + color: #111; + line-height: 1.5; +} +.site-nav .page-link:not(:last-child) { + margin-right: 20px; +} +@media screen and (max-width: 600px) { + .site-nav { + position: absolute; + top: 9px; + right: 15px; + background-color: #fdfdfd; + border: 1px solid #e8e8e8; + border-radius: 5px; + text-align: right; + } + .site-nav label[for=nav-trigger] { + display: block; + float: right; + width: 36px; + height: 36px; + z-index: 2; + cursor: pointer; + } + .site-nav .menu-icon { + display: block; + float: right; + width: 36px; + height: 26px; + line-height: 0; + padding-top: 10px; + text-align: center; + } + .site-nav .menu-icon > svg { + fill: rgb(66.25, 66.25, 66.25); + } + .site-nav input ~ .trigger { + clear: both; + display: none; + } + .site-nav input:checked ~ .trigger { + display: block; + padding-bottom: 5px; + } + .site-nav .page-link { + display: block; + margin-left: 20px; + padding: 5px 10px; + } + .site-nav .page-link:not(:last-child) { + margin-right: 0; + } +} + +/** + * Site footer + */ +.site-footer { + border-top: 1px solid #e8e8e8; + padding: 30px 0; +} + +.footer-heading { + font-size: 18px; + margin-bottom: 15px; +} + +.contact-list, +.social-media-list { + list-style: none; + margin-left: 0; +} + +.footer-col-wrapper { + font-size: 15px; + color: #828282; + margin-left: -15px; +} + +.footer-col { + float: left; + margin-bottom: 15px; + padding-left: 15px; +} + +.footer-col-1 { + width: -webkit-calc(35% - (30px / 2)); + width: calc(35% - 30px / 2); +} + +.footer-col-2 { + width: -webkit-calc(20% - (30px / 2)); + width: calc(20% - 30px / 2); +} + +.footer-col-3 { + width: -webkit-calc(45% - (30px / 2)); + width: calc(45% - 30px / 2); +} + +@media screen and (max-width: 800px) { + .footer-col-1, + .footer-col-2 { + width: -webkit-calc(50% - (30px / 2)); + width: calc(50% - 30px / 2); + } + .footer-col-3 { + width: -webkit-calc(100% - (30px / 2)); + width: calc(100% - 30px / 2); + } +} +@media screen and (max-width: 600px) { + .footer-col { + float: none; + width: -webkit-calc(100% - (30px / 2)); + width: calc(100% - 30px / 2); + } +} +/** + * Page content + */ +.page-content { + padding: 30px 0; + flex: 1; +} + +.page-heading { + font-size: 32px; +} + +.post-list-heading { + font-size: 28px; +} + +.post-list { + margin-left: 0; + list-style: none; +} +.post-list > li { + margin-bottom: 30px; +} + +.post-meta { + font-size: 14px; + color: #828282; +} + +.post-link { + display: block; + font-size: 24px; +} + +/** + * Posts + */ +.post-header { + margin-bottom: 30px; +} + +.post-title { + font-size: 42px; + letter-spacing: -1px; + line-height: 1; +} +@media screen and (max-width: 800px) { + .post-title { + font-size: 36px; + } +} + +.post-content { + margin-bottom: 30px; +} +.post-content h2 { + font-size: 32px; +} +@media screen and (max-width: 800px) { + .post-content h2 { + font-size: 28px; + } +} +.post-content h3 { + font-size: 26px; +} +@media screen and (max-width: 800px) { + .post-content h3 { + font-size: 22px; + } +} +.post-content h4 { + font-size: 20px; +} +@media screen and (max-width: 800px) { + .post-content h4 { + font-size: 18px; + } +} + +/** + * Syntax highlighting styles + */ +.highlight { + background: #fff; +} +.highlighter-rouge .highlight { + background: #eef; +} +.highlight .c { + color: #998; + font-style: italic; +} +.highlight .err { + color: #a61717; + background-color: #e3d2d2; +} +.highlight .k { + font-weight: bold; +} +.highlight .o { + font-weight: bold; +} +.highlight .cm { + color: #998; + font-style: italic; +} +.highlight .cp { + color: #999; + font-weight: bold; +} +.highlight .c1 { + color: #998; + font-style: italic; +} +.highlight .cs { + color: #999; + font-weight: bold; + font-style: italic; +} +.highlight .gd { + color: #000; + background-color: #fdd; +} +.highlight .gd .x { + color: #000; + background-color: #faa; +} +.highlight .ge { + font-style: italic; +} +.highlight .gr { + color: #a00; +} +.highlight .gh { + color: #999; +} +.highlight .gi { + color: #000; + background-color: #dfd; +} +.highlight .gi .x { + color: #000; + background-color: #afa; +} +.highlight .go { + color: #888; +} +.highlight .gp { + color: #555; +} +.highlight .gs { + font-weight: bold; +} +.highlight .gu { + color: #aaa; +} +.highlight .gt { + color: #a00; +} +.highlight .kc { + font-weight: bold; +} +.highlight .kd { + font-weight: bold; +} +.highlight .kp { + font-weight: bold; +} +.highlight .kr { + font-weight: bold; +} +.highlight .kt { + color: #458; + font-weight: bold; +} +.highlight .m { + color: #099; +} +.highlight .s { + color: #d14; +} +.highlight .na { + color: #008080; +} +.highlight .nb { + color: #0086B3; +} +.highlight .nc { + color: #458; + font-weight: bold; +} +.highlight .no { + color: #008080; +} +.highlight .ni { + color: #800080; +} +.highlight .ne { + color: #900; + font-weight: bold; +} +.highlight .nf { + color: #900; + font-weight: bold; +} +.highlight .nn { + color: #555; +} +.highlight .nt { + color: #000080; +} +.highlight .nv { + color: #008080; +} +.highlight .ow { + font-weight: bold; +} +.highlight .w { + color: #bbb; +} +.highlight .mf { + color: #099; +} +.highlight .mh { + color: #099; +} +.highlight .mi { + color: #099; +} +.highlight .mo { + color: #099; +} +.highlight .sb { + color: #d14; +} +.highlight .sc { + color: #d14; +} +.highlight .sd { + color: #d14; +} +.highlight .s2 { + color: #d14; +} +.highlight .se { + color: #d14; +} +.highlight .sh { + color: #d14; +} +.highlight .si { + color: #d14; +} +.highlight .sx { + color: #d14; +} +.highlight .sr { + color: #009926; +} +.highlight .s1 { + color: #d14; +} +.highlight .ss { + color: #990073; +} +.highlight .bp { + color: #999; +} +.highlight .vc { + color: #008080; +} +.highlight .vg { + color: #008080; +} +.highlight .vi { + color: #008080; +} +.highlight .il { + color: #099; +} + +/*# sourceMappingURL=main.css.map */ \ No newline at end of file diff --git a/_site/assets/main.css.map b/_site/assets/main.css.map new file mode 100644 index 0000000..1810de3 --- /dev/null +++ b/_site/assets/main.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["../../../../../var/lib/gems/3.1.0/gems/minima-2.5.2/_sass/minima/_base.scss","../../../../../var/lib/gems/3.1.0/gems/minima-2.5.2/_sass/minima.scss","../../../../../var/lib/gems/3.1.0/gems/minima-2.5.2/_sass/minima/_layout.scss","../../../../../var/lib/gems/3.1.0/gems/minima-2.5.2/_sass/minima/_syntax-highlighting.scss"],"names":[],"mappings":"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","sourcesContent":["/**\n * Reset some basic elements\n */\nbody, h1, h2, h3, h4, h5, h6,\np, blockquote, pre, hr,\ndl, dd, ol, ul, figure {\n margin: 0;\n padding: 0;\n}\n\n\n\n/**\n * Basic styling\n */\nbody {\n font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;\n color: $text-color;\n background-color: $background-color;\n -webkit-text-size-adjust: 100%;\n -webkit-font-feature-settings: \"kern\" 1;\n -moz-font-feature-settings: \"kern\" 1;\n -o-font-feature-settings: \"kern\" 1;\n font-feature-settings: \"kern\" 1;\n font-kerning: normal;\n display: flex;\n min-height: 100vh;\n flex-direction: column;\n}\n\n\n\n/**\n * Set `margin-bottom` to maintain vertical rhythm\n */\nh1, h2, h3, h4, h5, h6,\np, blockquote, pre,\nul, ol, dl, figure,\n%vertical-rhythm {\n margin-bottom: $spacing-unit * 0.5;\n}\n\n\n\n/**\n * `main` element\n */\nmain {\n display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */\n}\n\n\n\n/**\n * Images\n */\nimg {\n max-width: 100%;\n vertical-align: middle;\n}\n\n\n\n/**\n * Figures\n */\nfigure > img {\n display: block;\n}\n\nfigcaption {\n font-size: $small-font-size;\n}\n\n\n\n/**\n * Lists\n */\nul, ol {\n margin-left: $spacing-unit;\n}\n\nli {\n > ul,\n > ol {\n margin-bottom: 0;\n }\n}\n\n\n\n/**\n * Headings\n */\nh1, h2, h3, h4, h5, h6 {\n font-weight: $base-font-weight;\n}\n\n\n\n/**\n * Links\n */\na {\n color: $brand-color;\n text-decoration: none;\n\n &:visited {\n color: darken($brand-color, 15%);\n }\n\n &:hover {\n color: $text-color;\n text-decoration: underline;\n }\n\n .social-media-list &:hover {\n text-decoration: none;\n\n .username {\n text-decoration: underline;\n }\n }\n}\n\n\n/**\n * Blockquotes\n */\nblockquote {\n color: $grey-color;\n border-left: 4px solid $grey-color-light;\n padding-left: $spacing-unit * 0.5;\n @include relative-font-size(1.125);\n letter-spacing: -1px;\n font-style: italic;\n\n > :last-child {\n margin-bottom: 0;\n }\n}\n\n\n\n/**\n * Code formatting\n */\npre,\ncode {\n @include relative-font-size(0.9375);\n border: 1px solid $grey-color-light;\n border-radius: 3px;\n background-color: #eef;\n}\n\ncode {\n padding: 1px 5px;\n}\n\npre {\n padding: 8px 12px;\n overflow-x: auto;\n\n > code {\n border: 0;\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n\n\n/**\n * Wrapper\n */\n.wrapper {\n max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));\n max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));\n margin-right: auto;\n margin-left: auto;\n padding-right: $spacing-unit;\n padding-left: $spacing-unit;\n @extend %clearfix;\n\n @include media-query($on-laptop) {\n max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));\n max-width: calc(#{$content-width} - (#{$spacing-unit}));\n padding-right: $spacing-unit * 0.5;\n padding-left: $spacing-unit * 0.5;\n }\n}\n\n\n\n/**\n * Clearfix\n */\n%clearfix:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n\n\n/**\n * Icons\n */\n\n.svg-icon {\n width: 16px;\n height: 16px;\n display: inline-block;\n fill: #{$grey-color};\n padding-right: 5px;\n vertical-align: text-top;\n}\n\n.social-media-list {\n li + li {\n padding-top: 5px;\n }\n}\n\n\n\n/**\n * Tables\n */\ntable {\n margin-bottom: $spacing-unit;\n width: 100%;\n text-align: $table-text-align;\n color: lighten($text-color, 18%);\n border-collapse: collapse;\n border: 1px solid $grey-color-light;\n tr {\n &:nth-child(even) {\n background-color: lighten($grey-color-light, 6%);\n }\n }\n th, td {\n padding: ($spacing-unit * 0.3333333333) ($spacing-unit * 0.5);\n }\n th {\n background-color: lighten($grey-color-light, 3%);\n border: 1px solid darken($grey-color-light, 4%);\n border-bottom-color: darken($grey-color-light, 12%);\n }\n td {\n border: 1px solid $grey-color-light;\n }\n}\n","@charset \"utf-8\";\n\n// Define defaults for each variable.\n\n$base-font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\" !default;\n$base-font-size: 16px !default;\n$base-font-weight: 400 !default;\n$small-font-size: $base-font-size * 0.875 !default;\n$base-line-height: 1.5 !default;\n\n$spacing-unit: 30px !default;\n\n$text-color: #111 !default;\n$background-color: #fdfdfd !default;\n$brand-color: #2a7ae2 !default;\n\n$grey-color: #828282 !default;\n$grey-color-light: lighten($grey-color, 40%) !default;\n$grey-color-dark: darken($grey-color, 25%) !default;\n\n$table-text-align: left !default;\n\n// Width of the content area\n$content-width: 800px !default;\n\n$on-palm: 600px !default;\n$on-laptop: 800px !default;\n\n// Use media queries like this:\n// @include media-query($on-palm) {\n// .wrapper {\n// padding-right: $spacing-unit / 2;\n// padding-left: $spacing-unit / 2;\n// }\n// }\n@mixin media-query($device) {\n @media screen and (max-width: $device) {\n @content;\n }\n}\n\n@mixin relative-font-size($ratio) {\n font-size: $base-font-size * $ratio;\n}\n\n// Import partials.\n@import\n \"minima/base\",\n \"minima/layout\",\n \"minima/syntax-highlighting\"\n;\n","/**\n * Site header\n */\n.site-header {\n border-top: 5px solid $grey-color-dark;\n border-bottom: 1px solid $grey-color-light;\n min-height: $spacing-unit * 1.865;\n\n // Positioning context for the mobile navigation icon\n position: relative;\n}\n\n.site-title {\n @include relative-font-size(1.625);\n font-weight: 300;\n line-height: $base-line-height * $base-font-size * 2.25;\n letter-spacing: -1px;\n margin-bottom: 0;\n float: left;\n\n &,\n &:visited {\n color: $grey-color-dark;\n }\n}\n\n.site-nav {\n float: right;\n line-height: $base-line-height * $base-font-size * 2.25;\n\n .nav-trigger {\n display: none;\n }\n\n .menu-icon {\n display: none;\n }\n\n .page-link {\n color: $text-color;\n line-height: $base-line-height;\n\n // Gaps between nav items, but not on the last one\n &:not(:last-child) {\n margin-right: 20px;\n }\n }\n\n @include media-query($on-palm) {\n position: absolute;\n top: 9px;\n right: $spacing-unit * 0.5;\n background-color: $background-color;\n border: 1px solid $grey-color-light;\n border-radius: 5px;\n text-align: right;\n\n label[for=\"nav-trigger\"] {\n display: block;\n float: right;\n width: 36px;\n height: 36px;\n z-index: 2;\n cursor: pointer;\n }\n\n .menu-icon {\n display: block;\n float: right;\n width: 36px;\n height: 26px;\n line-height: 0;\n padding-top: 10px;\n text-align: center;\n\n > svg {\n fill: $grey-color-dark;\n }\n }\n\n input ~ .trigger {\n clear: both;\n display: none;\n }\n\n input:checked ~ .trigger {\n display: block;\n padding-bottom: 5px;\n }\n\n .page-link {\n display: block;\n margin-left: 20px;\n padding: 5px 10px;\n\n &:not(:last-child) {\n margin-right: 0;\n }\n }\n }\n}\n\n\n\n/**\n * Site footer\n */\n.site-footer {\n border-top: 1px solid $grey-color-light;\n padding: $spacing-unit 0;\n}\n\n.footer-heading {\n @include relative-font-size(1.125);\n margin-bottom: $spacing-unit * 0.5;\n}\n\n.contact-list,\n.social-media-list {\n list-style: none;\n margin-left: 0;\n}\n\n.footer-col-wrapper {\n @include relative-font-size(0.9375);\n color: $grey-color;\n margin-left: -$spacing-unit * 0.5;\n @extend %clearfix;\n}\n\n.footer-col {\n float: left;\n margin-bottom: $spacing-unit * 0.5;\n padding-left: $spacing-unit * 0.5;\n}\n\n.footer-col-1 {\n width: -webkit-calc(35% - (#{$spacing-unit} / 2));\n width: calc(35% - (#{$spacing-unit} / 2));\n}\n\n.footer-col-2 {\n width: -webkit-calc(20% - (#{$spacing-unit} / 2));\n width: calc(20% - (#{$spacing-unit} / 2));\n}\n\n.footer-col-3 {\n width: -webkit-calc(45% - (#{$spacing-unit} / 2));\n width: calc(45% - (#{$spacing-unit} / 2));\n}\n\n@include media-query($on-laptop) {\n .footer-col-1,\n .footer-col-2 {\n width: -webkit-calc(50% - (#{$spacing-unit} / 2));\n width: calc(50% - (#{$spacing-unit} / 2));\n }\n\n .footer-col-3 {\n width: -webkit-calc(100% - (#{$spacing-unit} / 2));\n width: calc(100% - (#{$spacing-unit} / 2));\n }\n}\n\n@include media-query($on-palm) {\n .footer-col {\n float: none;\n width: -webkit-calc(100% - (#{$spacing-unit} / 2));\n width: calc(100% - (#{$spacing-unit} / 2));\n }\n}\n\n\n\n/**\n * Page content\n */\n.page-content {\n padding: $spacing-unit 0;\n flex: 1;\n}\n\n.page-heading {\n @include relative-font-size(2);\n}\n\n.post-list-heading {\n @include relative-font-size(1.75);\n}\n\n.post-list {\n margin-left: 0;\n list-style: none;\n\n > li {\n margin-bottom: $spacing-unit;\n }\n}\n\n.post-meta {\n font-size: $small-font-size;\n color: $grey-color;\n}\n\n.post-link {\n display: block;\n @include relative-font-size(1.5);\n}\n\n\n\n/**\n * Posts\n */\n.post-header {\n margin-bottom: $spacing-unit;\n}\n\n.post-title {\n @include relative-font-size(2.625);\n letter-spacing: -1px;\n line-height: 1;\n\n @include media-query($on-laptop) {\n @include relative-font-size(2.25);\n }\n}\n\n.post-content {\n margin-bottom: $spacing-unit;\n\n h2 {\n @include relative-font-size(2);\n\n @include media-query($on-laptop) {\n @include relative-font-size(1.75);\n }\n }\n\n h3 {\n @include relative-font-size(1.625);\n\n @include media-query($on-laptop) {\n @include relative-font-size(1.375);\n }\n }\n\n h4 {\n @include relative-font-size(1.25);\n\n @include media-query($on-laptop) {\n @include relative-font-size(1.125);\n }\n }\n}\n","/**\n * Syntax highlighting styles\n */\n.highlight {\n background: #fff;\n @extend %vertical-rhythm;\n\n .highlighter-rouge & {\n background: #eef;\n }\n\n .c { color: #998; font-style: italic } // Comment\n .err { color: #a61717; background-color: #e3d2d2 } // Error\n .k { font-weight: bold } // Keyword\n .o { font-weight: bold } // Operator\n .cm { color: #998; font-style: italic } // Comment.Multiline\n .cp { color: #999; font-weight: bold } // Comment.Preproc\n .c1 { color: #998; font-style: italic } // Comment.Single\n .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special\n .gd { color: #000; background-color: #fdd } // Generic.Deleted\n .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific\n .ge { font-style: italic } // Generic.Emph\n .gr { color: #a00 } // Generic.Error\n .gh { color: #999 } // Generic.Heading\n .gi { color: #000; background-color: #dfd } // Generic.Inserted\n .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific\n .go { color: #888 } // Generic.Output\n .gp { color: #555 } // Generic.Prompt\n .gs { font-weight: bold } // Generic.Strong\n .gu { color: #aaa } // Generic.Subheading\n .gt { color: #a00 } // Generic.Traceback\n .kc { font-weight: bold } // Keyword.Constant\n .kd { font-weight: bold } // Keyword.Declaration\n .kp { font-weight: bold } // Keyword.Pseudo\n .kr { font-weight: bold } // Keyword.Reserved\n .kt { color: #458; font-weight: bold } // Keyword.Type\n .m { color: #099 } // Literal.Number\n .s { color: #d14 } // Literal.String\n .na { color: #008080 } // Name.Attribute\n .nb { color: #0086B3 } // Name.Builtin\n .nc { color: #458; font-weight: bold } // Name.Class\n .no { color: #008080 } // Name.Constant\n .ni { color: #800080 } // Name.Entity\n .ne { color: #900; font-weight: bold } // Name.Exception\n .nf { color: #900; font-weight: bold } // Name.Function\n .nn { color: #555 } // Name.Namespace\n .nt { color: #000080 } // Name.Tag\n .nv { color: #008080 } // Name.Variable\n .ow { font-weight: bold } // Operator.Word\n .w { color: #bbb } // Text.Whitespace\n .mf { color: #099 } // Literal.Number.Float\n .mh { color: #099 } // Literal.Number.Hex\n .mi { color: #099 } // Literal.Number.Integer\n .mo { color: #099 } // Literal.Number.Oct\n .sb { color: #d14 } // Literal.String.Backtick\n .sc { color: #d14 } // Literal.String.Char\n .sd { color: #d14 } // Literal.String.Doc\n .s2 { color: #d14 } // Literal.String.Double\n .se { color: #d14 } // Literal.String.Escape\n .sh { color: #d14 } // Literal.String.Heredoc\n .si { color: #d14 } // Literal.String.Interpol\n .sx { color: #d14 } // Literal.String.Other\n .sr { color: #009926 } // Literal.String.Regex\n .s1 { color: #d14 } // Literal.String.Single\n .ss { color: #990073 } // Literal.String.Symbol\n .bp { color: #999 } // Name.Builtin.Pseudo\n .vc { color: #008080 } // Name.Variable.Class\n .vg { color: #008080 } // Name.Variable.Global\n .vi { color: #008080 } // Name.Variable.Instance\n .il { color: #099 } // Literal.Number.Integer.Long\n}\n"],"file":"main.css"} \ No newline at end of file diff --git a/_site/assets/minima-social-icons.svg b/_site/assets/minima-social-icons.svg new file mode 100644 index 0000000..fa7399f --- /dev/null +++ b/_site/assets/minima-social-icons.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_site/feed.xml b/_site/feed.xml new file mode 100644 index 0000000..c9885cd --- /dev/null +++ b/_site/feed.xml @@ -0,0 +1 @@ +Jekyll2025-01-28T16:38:42+01:00http://localhost:4000/feed.xmlRISE-MICCAIJournal Club RISE MICCAI. \ No newline at end of file diff --git a/_site/index.html b/_site/index.html new file mode 100644 index 0000000..c5570e2 --- /dev/null +++ b/_site/index.html @@ -0,0 +1,261 @@ + + + + + +RISE-MICCAI | Journal Club RISE MICCAI. + + + + + + + + + + + + + + + +
+
+

The RISE Journal Club aims to create a friendly environment to discuss the latest state-of-the-art papers in the areas of medical image analysis, AI and computer vision. The main objective of this bi-weekly reading group is to help you develop/improve your critical and design thinking skills, which are essential skills for researchers and will help you when presenting or writing your own work.

+ +

To date, we have held two editions in which participants joined us remotely from different continents in highly engaging and stimulating sessions.

+ +

During each session, the moderators briefly introduce the paper and then moderate a discussion where everyone is welcome to provide their thoughts and ask any questions on the paper. The topics of the papers will vary, and we will try to cover different areas of medical data analysis, e.g., registration, segmentation, federated learning, fairness, and reinforcement learning —among others. Similarly, we will review papers from the machine and deep learning communities, providing you with a broader overview of the state-of-the-art method.

+ +

Upcoming Journal Club Sessions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateSpeakerTitleConferenceLink (Paper)Zoom LinkCalendar
+ + 08/03/2025 + + Mengjin DongRegional deep atrophy: Using temporal information to automatically identify regions associated with Alzheimer’s disease progression from longitudinal MRIImaging Neuroscience 2024LinkJoin Zoom + + Save Calendar + +
+ + + + + +
+ +
+
+ + + diff --git a/_site/past-sessions/index.html b/_site/past-sessions/index.html new file mode 100644 index 0000000..833c963 --- /dev/null +++ b/_site/past-sessions/index.html @@ -0,0 +1,415 @@ + + + + + +Past Sessions | RISE-MICCAI + + + + + + + + + + + + + + + +
+
+
+ +
+

Past Sessions

+
+ +
+ +

2024

+ + + + + + + + + + + + + + + +
DateSpeakerTitleConferenceLink (Paper)Zoom Link
+ +

2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateSpeakerTitleConferenceLink (Paper)Zoom Link
+ + 03/06/2023 + + Charles DelahuntAttention Is All You NeedNeurIPS 2018LinkJoin Zoom
+ + 14/06/2023 + + Islem RekikHeteroFL: Computation and Communication Efficient Federated Learning for Heterogeneous ClientsICLR 2021LinkJoin Zoom
+ + 28/06/2023 + + Samra IrshadSTEEX: Steering Counterfactual Explanations with semanticsECCV 2022LinkJoin Zoom
+ + 12/07/2023 + + Yasar MehmoodGeometric Visual Similarity Learning in 3D Medical Image Self-supervised Pre-trainingCVPR 2023LinkJoin Zoom
+ + 26/07/2023 + + Miguel López-PérezDisentangling Human Error from the Ground Truth in Segmentation of Medical ImagesNeurIPS 2020LinkJoin Zoom
+ + 06/09/2023 + + Charles DelahuntMetrics to guide development of machine learning algorithms for malaria diagnosis: Delahunt, Gachuhi, Horning. 2023LinkJoin Zoom
+ + 20/09/2023 + + Ayantika DasDiffusion Autoencoders: Toward a Meaningful and Decodable RepresentationCVPR 2022LinkJoin Zoom
+ + 04/10/2023 + + Jeya Maria JoseLearning Transferable Visual Models From Natural Language SupervisionICML 2021LinkJoin Zoom
+ + 18/10/2023 + + Soumi RayIntensity Population based Unsupervised Hemorrhage Segmentation from Brain CT ImagesLinkJoin Zoom
+ + 01/11/2023 + + Prerak Mody/Mortiz FuchsPrediction Variability to Identify Reduced AI Performance in Cancer Diagnosis at MRI and CTRSNA 2023LinkJoin Zoom
+ + 15/11/2023 + + Tareen DawoodUncertainty aware training to improve deep learning model calibration for classification of cardiac MR imagesMedIALinkJoin Zoom
+ + 29/11/2023 + + Prosper OyiboTwo-stage automated diagnosis framework for urogenital schistosomiasis in microscopy images from low-resource settingsJMILinkJoin Zoom
+ + 13/12/2023 + + Tiarna LeeAn investigation into the impact of deep learning model choice on sex and race bias in cardiac MR segmentationFAIMI (MICCAI) 2023LinkJoin Zoom
+ + + + + + +
+ +
+ +
+
+ + + diff --git a/about.markdown b/about.markdown new file mode 100644 index 0000000..54bc5eb --- /dev/null +++ b/about.markdown @@ -0,0 +1,29 @@ +--- +layout: page +title: About +permalink: /about/ +--- + +# Why RISE? +- Researchers of under-represented origins (Africa, Latin America, + South/South-East Asian, and Middle-East) who work in the field of Medical + Image Computing and Computer-Aided Interventions (MICCAI) are barely + represented in the community (~around 2% participation to MICCAI 2020). +- Strengthen the presence of minority researchers from Low-to-Middle Income + Countries (LMIC) in MICCAI. +- Build collaborative bridges across countries and co-develop international + cutting-edge research projects in medicine with a wider global outreach and + impact. + + +# Mission Statement + - Propel inclusiveness and geographic diversity within MICCAI, + - Strengthen the presence of minority researchers in Low-to-Middle Income + Countries (LMICs) at MICCAI, + - Empower MICCAI researchers in LMICs, + - Pave the way for future research stars to rise in LMICs and + under-represented communities, and + - Build a strong research network within LMICs as well as across continents + and different parties to help reduce global disparities in health and + imaging. + diff --git a/index.markdown b/index.markdown new file mode 100644 index 0000000..943e09e --- /dev/null +++ b/index.markdown @@ -0,0 +1,185 @@ +--- +layout: home +--- + +The RISE Journal Club aims to create a friendly environment to discuss the latest state-of-the-art papers in the areas of medical image analysis, AI and computer vision. The main objective of this bi-weekly reading group is to help you develop/improve your critical and design thinking skills, which are essential skills for researchers and will help you when presenting or writing your own work. + +To date, we have held two editions in which participants joined us remotely from different continents in highly engaging and stimulating sessions. + +During each session, the moderators briefly introduce the paper and then moderate a discussion where everyone is welcome to provide their thoughts and ask any questions on the paper. The topics of the papers will vary, and we will try to cover different areas of medical data analysis, e.g., registration, segmentation, federated learning, fairness, and reinforcement learning —among others. Similarly, we will review papers from the machine and deep learning communities, providing you with a broader overview of the state-of-the-art method. + + +

Upcoming Journal Club Sessions

+ + + + + + + + + + + + + + {% assign today = 'now' | date: '%Y-%m-%d' %} + {% for session in site.data.schedule %} + {% if session.speaker != "" %} + {% assign session_date_parts = session.date | split: '/' %} + {% assign session_date = session_date_parts[2] | append: '-' | append: session_date_parts[1] | append: '-' | append: session_date_parts[0] %} + {% if session_date >= today %} + + + + + + + + + + {% endif %} + {% endif %} + {% endfor %} + +
DateSpeakerTitleConferenceLink (Paper)Zoom LinkCalendar
+ + {{ session.date }} + + {{ session.speaker }}{{ session.paper_title }}{{ session.conference }}LinkJoin Zoom + + Save Calendar + +
+ + + + + diff --git a/past-sessions.md b/past-sessions.md new file mode 100644 index 0000000..faa045c --- /dev/null +++ b/past-sessions.md @@ -0,0 +1,127 @@ +--- +layout: page +title: Past Sessions +permalink: /past-sessions/ +--- +{% assign years = "2024,2023" | split: "," %} + +{% for year in years %} +

{{ year }}

+ + + + + + + + + + + + + {% assign today = 'now' | date: '%Y-%m-%d' %} + {% for session in site.data[year] %} + {% assign session_date_parts = session.date | split: '/' %} + {% assign session_date = session_date_parts[2] | append: '-' | append: session_date_parts[0] | append: '-' | append: session_date_parts[1] %} + {% if session_date < today %} + + + + + + + + + {% endif %} + {% endfor %} + +
DateSpeakerTitleConferenceLink (Paper)Zoom Link
+ + {{ session.date }} + + {{ session.speaker }}{{ session.paper_title }}{{ session.conference }}LinkJoin Zoom
+{% endfor %} + + + + +