Commit d47a2289 authored by LiniEisha's avatar LiniEisha

checking the new branch name

parent ade8f9f2
...@@ -11,6 +11,7 @@ with open("audioToText01.txt", "r", encoding="utf-8") as f: ...@@ -11,6 +11,7 @@ with open("audioToText01.txt", "r", encoding="utf-8") as f:
doc = nlp(text) doc = nlp(text)
corpus = [sent.text.lower() for sent in doc.sents ] corpus = [sent.text.lower() for sent in doc.sents ]
cv = CountVectorizer(stop_words=list(STOP_WORDS)) cv = CountVectorizer(stop_words=list(STOP_WORDS))
cv_fit=cv.fit_transform(corpus) cv_fit=cv.fit_transform(corpus)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment