mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 04:39:06 +00:00
fix filename error
This commit is contained in:
@@ -20,7 +20,6 @@ def preprocess_sentence(sentence):
|
|||||||
|
|
||||||
def compute_similarity(sent1, sent2):
|
def compute_similarity(sent1, sent2):
|
||||||
tfidf_vectorizer = TfidfVectorizer()
|
tfidf_vectorizer = TfidfVectorizer()
|
||||||
print("semt1", sent1, sent2)
|
|
||||||
if sent1 is not None and sent2 is not None:
|
if sent1 is not None and sent2 is not None:
|
||||||
tfidf_matrix = tfidf_vectorizer.fit_transform([sent1, sent2])
|
tfidf_matrix = tfidf_vectorizer.fit_transform([sent1, sent2])
|
||||||
return cosine_similarity(tfidf_matrix[0], tfidf_matrix[1])[0][0]
|
return cosine_similarity(tfidf_matrix[0], tfidf_matrix[1])[0][0]
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ def main():
|
|||||||
# S3 : Push artefacts to S3 bucket
|
# S3 : Push artefacts to S3 bucket
|
||||||
suffix = NOW.strftime("%m-%d-%Y_%H:%M:%S")
|
suffix = NOW.strftime("%m-%d-%Y_%H:%M:%S")
|
||||||
files_to_upload = ["real_time_transcript_" + suffix + ".txt",
|
files_to_upload = ["real_time_transcript_" + suffix + ".txt",
|
||||||
"real_time_transcript_with_timestamp" + suffix + ".txt",
|
"real_time_transcript_with_timestamp_" + suffix + ".txt",
|
||||||
"real_time_df_" + suffix + ".pkl",
|
"real_time_df_" + suffix + ".pkl",
|
||||||
"real_time_wordcloud_" + suffix + ".png",
|
"real_time_wordcloud_" + suffix + ".png",
|
||||||
"real_time_mappings_" + suffix + ".pkl",
|
"real_time_mappings_" + suffix + ".pkl",
|
||||||
|
|||||||
Reference in New Issue
Block a user