This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 3 - Listen Functions | |
# 1- Selenium Based Speech Recognition | |
# from selenium import webdriver | |
# from time import sleep | |
# from selenium.webdriver.chrome.options import Options | |
# from selenium.webdriver.common.by import By | |
# chrome_options = Options() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# importing the librtaries | |
import math | |
import numpy as np | |
import nltk | |
import re | |
import gensim | |
from gensim.parsing.preprocessing import remove_stopwords | |
from gensim import corpora | |
from sklearn.feature_extraction.text import TfidfVectorizer | |
import heapq |