mramazan commited on
Commit
fafdf3c
·
verified ·
1 Parent(s): 87684fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -81,7 +81,7 @@ class AnimeRecommendationSystem:
81
  # Dataset'i yükle
82
  dataset_path = Path(self.dataset_path)
83
  with dataset_path.open('rb') as f:
84
- self.dataset = pickle.load(f)["smap"]
85
 
86
  args.num_items = len(self.dataset)
87
 
 
81
  # Dataset'i yükle
82
  dataset_path = Path(self.dataset_path)
83
  with dataset_path.open('rb') as f:
84
+ self.dataset = pickle.load(f)
85
 
86
  args.num_items = len(self.dataset)
87