diff --git a/README.md b/README.md
index b989b51156b27e0ce822047741169caaee6c97a9..d91d6688d9d78d40dff758d7e096338d33614b5b 100644
--- a/README.md
+++ b/README.md
@@ -2,66 +2,3 @@
 This is the code and collected data from my Bachelor's Thesis.
 
 It consists of the model classes, training loops, plotting function, and data import functions used in the notebooks to display the experimentation that was done to analyze the proposed method.
-
-```mermaid
-graph TD
-    A[Load Config] --> B[Iterate Excel Files]
-    B --> C1[Process Each Sheet]
-    C1 --> C2[Custom Sheet Processing]
-    C2 --> C3[Merge All Sheets]
-    C3 --> C[Drop Constant/Duplicate Features]
-    C --> D[Filter Organs]
-    D --> E[Apply Optional Steps]
-    E --> F[Impute Data]
-    F --> H[Split Data]
-    H --> I[Save Data]
-    
-    subgraph Custom Sheet Processing
-        C2a[Transplantat]
-        C2b[Drogen]
-        C2c[Alkohol]
-        C2d[Allokation]
-        C2e[Ohne Diagnosegruppe]
-        C2f[Hypertonie]
-        C2g[Diabetes]
-        C2h[Rauchen]
-        C2i[Sepsis]
-        C2j[Malignom]
-    end
-    
-    subgraph Optional Steps
-        E1[Scale]
-        E2[Create Features]
-        E3[Encode]
-        E4[Drop Columns]
-        E5[Rename Columns]
-    end
-    
-    subgraph Data Splits
-        H1[Train]
-        H2[Test]
-        H3[Validation]
-    end
-    
-    C2 --> C2a
-    C2 --> C2b
-    C2 --> C2c
-    C2 --> C2d
-    C2 --> C2e
-    C2 --> C2f
-    C2 --> C2g
-    C2 --> C2h
-    C2 --> C2i
-    C2 --> C2j
-    
-    E --> E1
-    E --> E2
-    E --> E3
-    E --> E4
-    E --> E5
-    
-    H --> H1
-    H --> H2
-    H --> H3
-
-```
\ No newline at end of file