Switch to side-by-side view

--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@
 
 Instance-level labels obtained using max-aggregation lack of large sensitivity, since max-aggregation only focus on the most distriminant instances. To alleviate this issue, training an Student model on distilled pseudolabels from the MIL-trained Teacher has shown promising results:
 
-![ssl](https://github.com/jusiro/mil_histology/blob/main/images/student_method.png)
+![ssl](https://github.com/jusiro/mil_histology/blob/main/images/student_method.png?raw=true)
 
 ```
 python train_student.py --experiment_name instance_max
@@ -40,7 +40,7 @@
 ## Proportion Constraints
 Weakly supervised learning methods usually require large amounts od data to perform properly.In this project, we propose to introduce proportion priors per WSI as additional, weak information, to train realiable deep learning models. Concretely, we take advantadge of the Gleason scoring system, which defines a primary and secondary class per bag based on tissue proportions. Thus, we use inequality constraints to ensure that the percentage of positive predictions for the primary class is larger than the one for the secondary grade. Our formulation is flexible, and might deal with other problems, where more constraints are known regarding relative class proportions. You can train the proposed model using the following code.
 
-![pc](https://github.com/jusiro/mil_histology/blob/main/images/proportion_method.png)
+![pc](https://github.com/jusiro/mil_histology/blob/main/images/proportion_method.png?raw=true)
 
 ```
 python main.py --experiment_name instance_max_Constrained --aggregation max --mode instance --pMIL True --alpha_ce 1 --alpha_ic 0.1 --alpha_pc 1 --t_ic 15 --t_pc 5 --scheduler True --early_stopping True --criterion z --epochs 100
@@ -59,7 +59,7 @@
 ```
 python produce_visualizations.py --experiment_name instance_max_Constrained
 ```
-![visualizations](https://github.com/jusiro/mil_histology/blob/main/images/visualzations.png)
+![visualizations](https://github.com/jusiro/mil_histology/blob/main/images/visualzations.png?raw=true)
 
 ## Contact
 For further questions or details, please directly reach out to Julio Silva-Rodríguez