ターミナルのphythonのインタープリタを使っているのですが
Python
1critics={'Lisa Rose':{'Lady in the Water':2.5,'Snakes on a Plane':3.5, 2'Just My Luck':3.0, 'Superman Returns':3.5,'You, Me and Dupree':2.5, 3'The Night Listener':3.0}, 4 5'Gene Seymour':{'Lady in the Water':3.0,'Snakes on a Plane':3.5, 6'Just My Luck':3.0, 'Superman Returns':5.0,'You, Me and Dupree':3.5, 7'The Night Listener':3.0}, 8 9'Michael Phillips':{'Lady in the Water':2.5,'Snakes on a Plane':3.0, 10 'Superman Returns':3.5, 11'The Night Listener':4.0}, 12 13'Claudia Puig':{'Snakes on a Plane':3.5, 14'Just My Luck':3.0, 'Superman Returns':4.0,'You, Me and Dupree':2.5, 15'The Night Listener':4.5}, 16 17'Mick LaSalle':{'Lady in the Water':3.0,'Snakes on a Plane':4.0, 18'Just My Luck':2.0, 'Superman Returns':3.0,'You, Me and Dupree':2.0, 19'The Night Listener':3.0}, 20 21'Jack Mtthews':{'Lady in the Water':3.0,'Snakes on a Plane':4.0, 22 'Superman Returns':5.0,'You, Me and Dupree':3.5, 23'The Night Listener':3.0}, 24 25'Toby':{'Snakes on a Plane':4.5, 26 'Superman Returns':4.0,'You, Me and Dupree':1.0,}} 27 28# ここから処理 29 30from math import sqrt 31#person1とperson2の距離を基にした類似性スコアを返す 32def sim_distance(prefs,person1,person2): 33 # 二人とも評価しているリストを得る 34 si={} 35 for item in prefs[person1]: 36 if item in prefs[person2]: 37 si[item]=1 38 39# 両者ともに評価しているものがなければ0を返す 40if len(si)==0: return 0 41# 全ての差の兵法を足し合わせる 42sum_of_squares=sum([pow(prefs[person1][item]-prefs[person2][item],2) 43 for item in prefs[person1] if item in prefs[person2]]) 44 45return 1/(1+sum_of_squares) 46
このようにコードを書いてインタープリタに
terminal
1reload(recommendations) 2Traceback (most recent call last): 3 File "<stdin>", line 1, in <module> 4NameError: name 'recommendations' is not defined
とエラーが出ます。 ファイル名はrecommendations.pyで作っているのでなぜ動かないのかがわからないです。ご回答のほどよろしくお願いします
#補足
terminal
1>>> from importlib import reload 2>>> reload(recommendatins) 3Traceback (most recent call last): 4 File "<stdin>", line 1, in <module> 5NameError: name 'recommendatins' is not defined
こちらも試しましたがダメでした。。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/13 11:31
2019/12/13 11:38
2019/12/13 11:51