Skip to content

Commit

Permalink
correct issue with updating to the original column
Browse files Browse the repository at this point in the history
  • Loading branch information
xehu committed Sep 23, 2024
1 parent f30bc1d commit 3aa115d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/team_comm_tools/feature_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def __init__(
if(not need_sentiment and feature_dict[feature]["bert_sentiment_data"]):
need_sentiment = True

check_embeddings(self.chat_data, self.vect_path, self.bert_path, need_sentence, need_sentiment, self.regenerate_vectors, message_col="message_original")
check_embeddings(self.chat_data, self.vect_path, self.bert_path, need_sentence, need_sentiment, self.regenerate_vectors, message_col = self.message_col + "_original")

if(need_sentence):
self.vect_data = pd.read_csv(self.vect_path, encoding='mac_roman')
Expand Down

0 comments on commit 3aa115d

Please sign in to comment.