From 3d498e58b14938089e43c46a8a8a907118bd1235 Mon Sep 17 00:00:00 2001
From: Prince Addae <charles.addae@student.uclouvain.be>
Date: Fri, 24 May 2024 16:31:00 +0000
Subject: [PATCH] view

---
 README.md | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index eb3b0158..b64eefc9 100644
--- a/README.md
+++ b/README.md
@@ -24,16 +24,31 @@ pip install tabulate
 The project is organized into the following key components:
 
 ###Configuration and Constants
-
 1. **configs.py**
     - This code defines an EvalConfig class that stores configurations for evaluating multiple recommendation models. It specifies a list of models, each with its name, class, and parameters. Metrics are defined to evaluate model performance under different scenarios: split evaluation, Leave-One-Out, and on the entire dataset. Other parameters include test set size and number of recommendations to consider.
 2. **constants.py**
     - This code defines a Constant class that stores paths to datasets and column names for content and evidence data. Paths to content, evidence, and evaluation directories are defined based on the data directory path. File names and column names for article and rating data are specified, along with the rating scale.
+
+###Data Loaders
 3. **loaders.py**
-    - This code loads rating and item data from specified CSV files in the Constant class of the constants module. The load_ratings function loads rating data, and the load_items function loads item data. Another function, export_evaluation_report, merges rating and item data, then exports the evaluation report to a CSV file. The data is loaded into pandas DataFrames, with an option available to load rating data in the format expected by the Surprise library if needed.
+    - Loads rating and item data from specified CSV files in the Constant class of the constants module.
+    
+    - The `load_ratings` function loads rating data.
+    
+    - The `load_items` function loads item data.
+    
+    - The `export_evaluation_report` function merges rating and item data, then exports the evaluation report to a CSV file.
+    
+    - The data is loaded into pandas DataFrames, with an option available to load rating data in the format expected by the Surprise library if needed.
+
+###Recommender Models
 4. **models.py**
-    - This code defines several basic recommendation algorithms for the Surprise library. The get_top_n function takes a list of predictions and returns the top recommendations for each user. Recommendation algorithms are defined as classes inheriting from Surprise's AlgoBase class, each implementing an estimate method to predict user ratings for items.
-=======
+    - Defines several basic recommendation algorithms for the Surprise library.
+    
+    - The get_top_n function takes a list of predictions and returns the top recommendations for each user.
+    
+    - 
+Recommendation algorithms are defined as classes inheriting from Surprise's AlgoBase class, each implementing an estimate method to predict user ratings for items.=======
 Ces codes se trouveront dans le même dossier que chacun des jupyter notebook (.ipynb).
 
 ### configs.py
-- 
GitLab