diff --git a/_config.yml b/_config.yml
index 2ff91f03c3075088e6fe9a9ee6f0d31a6fd6efea..88aad68e27b8f40ab75fe9423426eac273cae203 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,6 +1,6 @@
 title: "2023 AI4Health summer school - Practical Session on Fed-BioMed, an open source framework for federated learning in real world healthcare applications"
 author: "Lucia Innocenti and Francesco Cremonesi"
-logo: "assets/img/logo.jpg"
+logo: "assets/img/logo.png"
 only_build_toc_files: true
 exclude_patterns: [_build, Thumbs.db, .DS_Store, "**.ipynb_checkpoints", "README.md"]
 
diff --git a/_toc.yml b/_toc.yml
index 9c7f3934d1add5f8c1a5fd32a7481bcb81bd277d..6b4bd7e965a56cd52e32422c9b693080654273fe 100644
--- a/_toc.yml
+++ b/_toc.yml
@@ -5,3 +5,4 @@ parts:
 - caption: Fed-BioMed tutorial
   chapters:
   - file: fedbiomed-tutorial/aws-instructions.md 
+  - file: fedbiomed-tutorial/running-the-gui.md
diff --git a/assets/img/logo.jpg b/assets/img/logo.jpg
deleted file mode 100644
index 63cff5a35c4213bf79518c67ac331cd183555cfa..0000000000000000000000000000000000000000
Binary files a/assets/img/logo.jpg and /dev/null differ
diff --git a/assets/img/logo.png b/assets/img/logo.png
index 1f9dde4bf9e636f4b537fb44d0d3e82b2fb1ccc6..d5643a5ff7005c591fd47542c711441c429eb00d 100644
Binary files a/assets/img/logo.png and b/assets/img/logo.png differ
diff --git a/fedbiomed-tutorial/running-the-gui.md b/fedbiomed-tutorial/running-the-gui.md
new file mode 100644
index 0000000000000000000000000000000000000000..f6b74a4de83f3ebcf35c523d0b7884f084b66e39
--- /dev/null
+++ b/fedbiomed-tutorial/running-the-gui.md
@@ -0,0 +1,26 @@
+# Running the Fed-BioMed GUI on JupyterHub
+
+Prerequisites:
+- node configuration must be created
+- your JupyterHub IP address
+- a network port from the table below
+
+## Network ports
+
+| user | port |
+| ---  | ---  |
+| francesco | 8484 |
+
+## Running the GUI
+
+The GUI's execution will be associated with a specific node. For this example, we will refer to it as `node-name`. 
+Open a new terminal and navigate to the `fedbiomed` directory, then run the following command
+```bash
+cd $HOME/fedbiomed
+./scripts/fedbiomed_run gui data-folder /datasets config node-name --port <your port from the table above> --host 0.0.0.0 start
+```
+
+## Accessing the GUI
+Copy the IP address that you used to access JupyterHub, and append `:<your port number>` at the end and paste it in your browser. 
+For example, if your address was `1.2.3.4` and your port is `8456`, you would insert `http://1.2.3.4:8456` in your browser search bar.
+
diff --git a/index.md b/index.md
index a491e37d7fe74b99008a78daf6c210e38260aa5b..a30577b836e38f1c8d0798f89e203ac2abd98e49 100644
--- a/index.md
+++ b/index.md
@@ -1,15 +1,8 @@
-# Handling heterogeneity in the analysis of biomedical information
-## 2021 AI4Health practical session 
+# Fed-BioMed, an open source framework for federated learning in real world healthcare applications
+## 2023 AI4Health practical session 
  
-	
-This session focuses on the problem of statistical analysis of heterogeneous data in biomedical studies. Through guided examples, we will first introduce the basics of latent variable modelling for the joint analysis of heterogeneous data types (such as imaging, clinical or biological measurements). We will initially focus on linear approaches, such as partial least squares and canonical correlation analysis. We will then present more flexible methods based on recent advances in deep learning and stochastic variational inference, such as the multi-channel variational autoencoder. We will finally address the problem of deploying latent variable models for federated learning in multi-centric studies, where models must account for data-privacy and heterogeneity across datasets.
+This practical session focuses on federated learning (FL) for healthcare applications, and is based on Fed-BioMed, an open source framework for deploying FL in real world use-cases. Throughout the session the participants will get introduced to the basics of federated learning, and will learn to deploy a federated training in a network of clients by using the Fed-BioMed software components. We will focus on the federation of general machine learning approaches for the analysis of medical data (such as tabular or medical images), using a variety of AI frameworks, from Pytorch to scikit-learn. Most advanced topics include the use of privacy-preserving techniques in FL, and the definition of custom data types, models and optimisation routines.	
 
 ## Material usage
 
-Herein you will find the material that will be developed during the practical session. Some of the material corresponds to text and images that you can download in the upper right corner <i class="fas fa-download"></i> 
-
-
-
-## Launch my notebooks
-
-You can have an environment for yourself by clicking here: [![Binder](https://mybinder.org/badge_logo.svg)](http://bit.ly/3iahdfl)
+We provide a ready-to-use JupyterHub server. Follow the [instructions](/fedbiomed-tutorial/aws-instructions) to find out how to connect. 
diff --git a/requirements-site.txt b/requirements-site.txt
index 201dd8a6630d7c2878ccaf16a6ef588d90b1c4ae..54231468cd1cdd5846d5974386ed709bc0bff447 100644
--- a/requirements-site.txt
+++ b/requirements-site.txt
@@ -1,2 +1,3 @@
 sphinxcontrib-bibtex==2.5.0
+myst-parser>=0.17.0,<1.0.0
 jupyter-book==0.15.1