From 7495189c43a9d5732428dd81d72c2f4b9b3745e5 Mon Sep 17 00:00:00 2001
From: Fadi <fadi.gattoussi@stud.th-deg.de>
Date: Mon, 25 Dec 2023 21:13:29 +0100
Subject: [PATCH] fixed "update graph bug"

---
 Main.py   | 1 -
 README.md | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/Main.py b/Main.py
index e8aa4e7..98877b5 100644
--- a/Main.py
+++ b/Main.py
@@ -148,7 +148,6 @@ class MainWindow(QMainWindow):
         self.price = model.predict_price(X_test)
         # price = model.predict(X_test)[0]
         self.display_price.setText(str(self.price))
-        self.update_graph()
 
     def validate_inputs(self, val, attribute):
         if Advanced.Advanced_selections[attribute]:
diff --git a/README.md b/README.md
index 17d66c0..1739f3c 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ pip install -r requirements.txt
 - `diamonds.csv`: Dataset containing diamond attributes.
 - `Main.py`: Main Python script with GUI for prediction and visualization.
 - `requirements.txt`: List of Python packages required for the project.
-- `training3.ipynb`: Jupyter notebook for data preprocessing and analysis.
+- `training.ipynb`: Jupyter notebook for data preprocessing and analysis.
 
 ## Contributing
 Feel free to contribute to this project by submitting pull requests or suggesting improvements.
-- 
GitLab