code following :
s1 = “this is good movie”
s2 = “this was good movie”
s3 = “this is not good movie”
corpus = [s1,s2,s3]
tfidf = TfidfVectorizer()
vc = tfidf.fit_transform(corpus).toarray()
print(vc)
in vc = “good” was the first word but it didn’t have same weight for all 3 documents, why? as per the formula, they should be same , right?