Accessing y index
https://stackoverflow.com/questions/522563/accessing-the-index-in-for-loops
Ternary Operator
https://stackoverflow.com/questions/394809/does-python-have-a-ternary-conditional-operator
Python
Dynamic Programming Language
Focussed on Readibility
Interpreted Language as vs Compiled Language
Multiparadigm : Structure , object and Funtional oriented
https://code.visualstudio.com/docs/python/tutorial-deploy-containers
NLTK Download and punkt
https://stackoverflow.com/questions/26570944/resource-utokenizers-punkt-english-pickle-not-found
What are these pickle files
C:\Users\rameezahmed.sayad\AppData\Roaming\nltk_data\tokenizers\punkt\PY3
Pickling and Unplicking ,pickle files
https://www.pythoncentral.io/how-to-pickle-unpickle-tutorial/
Pandas Dataframe
https://pandas.pydata.org/pandas-docs/stable/api.html
Document Word Frequency and Inverse document Frequency
Term Frequency or Word Frequency - is the frequency of a word in a document against total words in a document.
Inverse document Frequency - is the frequency of a word relative to other documents.
if the word appears in all documents it' inverse docu freq is 0 as it is not as important.
for getting the importance of a document we need to multiple term frequency * document frequency
Stemming
it is a technique of grouping similar words , eg sweet,sweetener,sweeter and so on.
https://stackoverflow.com/questions/522563/accessing-the-index-in-for-loops
Ternary Operator
https://stackoverflow.com/questions/394809/does-python-have-a-ternary-conditional-operator
Python
Dynamic Programming Language
Focussed on Readibility
Interpreted Language as vs Compiled Language
Multiparadigm : Structure , object and Funtional oriented
https://code.visualstudio.com/docs/python/tutorial-deploy-containers
NLTK Download and punkt
https://stackoverflow.com/questions/26570944/resource-utokenizers-punkt-english-pickle-not-found
What are these pickle files
C:\Users\rameezahmed.sayad\AppData\Roaming\nltk_data\tokenizers\punkt\PY3
Pickling and Unplicking ,pickle files
https://www.pythoncentral.io/how-to-pickle-unpickle-tutorial/
Pandas Dataframe
https://pandas.pydata.org/pandas-docs/stable/api.html
Document Word Frequency and Inverse document Frequency
Term Frequency or Word Frequency - is the frequency of a word in a document against total words in a document.
Inverse document Frequency - is the frequency of a word relative to other documents.
if the word appears in all documents it' inverse docu freq is 0 as it is not as important.
for getting the importance of a document we need to multiple term frequency * document frequency
Stemming
it is a technique of grouping similar words , eg sweet,sweetener,sweeter and so on.
Comments
Post a Comment