ICP 7 - Murarishetti-Shiva-Kumar/Python-Deep-Learning-Programming GitHub Wiki

1. Change the classifier in the given code to

image

a. SVM and see how accuracy changes

image

b. change the tfidf vectorizer to use bigram and see how the accuracy changes TfidfVectorizer(ngram_range=(1,2))

image

c. Set argument stop_words='english' and see how accuracy changes

image image

2. Extract the following web URL text using BeautifulSoupURL

image

3. Save it in input.txt

image

4. Apply the following on the “input.txt” and show output:

a. Tokenization

image image

b. POS

image

c. Stemming

image image

d. Lemmatization

image

e. Trigram

image

f. Named Entity Recognition

image image