ICP 7 - Murarishetti-Shiva-Kumar/Python-Deep-Learning-Programming GitHub Wiki
1. Change the classifier in the given code to
a. SVM and see how accuracy changes
b. change the tfidf vectorizer to use bigram and see how the accuracy changes TfidfVectorizer(ngram_range=(1,2))
c. Set argument stop_words='english' and see how accuracy changes
URL
2. Extract the following web URL text using BeautifulSoup3. Save it in input.txt
4. Apply the following on the “input.txt” and show output:
a. Tokenization
b. POS
c. Stemming
d. Lemmatization
e. Trigram
f. Named Entity Recognition