remove unecessary parameter

This commit is contained in:
ltcptgeneral 2023-11-04 17:12:13 -07:00
parent 0a096b2af3
commit f9e4c03b85

View File

@ -187,7 +187,7 @@
" def __init__(self):\n",
" pass\n",
"\n",
" def fit(self, data, threshold=0.6, K=5, iters=100): # data is an array of (user, game, review) tuples\n",
" def fit(self, data, K=5, iters=100): # data is an array of (user, game, review) tuples\n",
" self.userIDs = {}\n",
" self.itemIDs = {}\n",
" interactions = []\n",