Uppdatera README samt Main

This commit is contained in:
jwradhe 2024-10-27 20:21:20 +01:00
parent 1aab6bc743
commit 337ab1b45c
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ like Title, Release year, Description, Cast, Director and genres.
### Classes
1. LoadData
* check_data
* load_data
* clean_text
* clean_data
* load_dataset

View File

@ -13,7 +13,7 @@ class LoadData:
self.data = None
self.loaded_datasets = []
def check_data(self):
def load_data(self):
self.create_data()
self.clean_data()
num_rows = self.data.shape[0]
@ -97,7 +97,7 @@ class Recommendations:
def main():
data_loader = LoadData()
title_data = data_loader.check_data()
title_data = data_loader.load_data()
user_data = UserData()
user_input = user_data.input()