Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,8 +21,8 @@ nltk.download('wordnet')
21
  # ---------------------
22
  # 2. Load Dataset
23
  # ---------------------
24
- dataset_path = "comprehensive_skin_disease_dataset.json"
25
- if not os.path.exists(dataset.json):
26
  raise FileNotFoundError(f"{dataset_path} not found. Please ensure the file is in the current directory.")
27
 
28
  with open(dataset.json, "r") as f:
 
21
  # ---------------------
22
  # 2. Load Dataset
23
  # ---------------------
24
+ dataset_path = "dataset.json"
25
+ if not os.path.exists(dataset_path):
26
  raise FileNotFoundError(f"{dataset_path} not found. Please ensure the file is in the current directory.")
27
 
28
  with open(dataset.json, "r") as f: