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

2. Extract the following web URL text using BeautifulSoupURL

3. 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
