Skip to content

Commit

Permalink
small change to test deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkolb committed Apr 21, 2024
1 parent f08bccb commit 24fb924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def load_data(path="./processed_data/", visibility=None):
with open(path + visibility + "_smm_responses_by_round.pkl", "rb") as f:
responses_by_round = pickle.load(f)
with open(path + visibility + "_smm_responses_by_user.pkl", "rb") as f:
responses_by_user = pickle.load(f)
responses_by_user = pickle.load(f)
with open(path + visibility + "_smm_responses_by_user_and_round.pkl", "rb") as f:
responses_by_user_and_round = pickle.load(f)
with open(path + visibility + "_smm_responses_by_question.pkl", "rb") as f:
Expand Down

0 comments on commit 24fb924

Please sign in to comment.