File size: 12,159 Bytes
54319f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
Classification from nltk.corpus import names l = ([(name, 'male') for name in names.words('male.txt')] + [(name, 'female') for name in names.words('female.txt')]) print("\nNumber of male names:") print(len(names.words('male.txt'))) print("\nNumber of female names:") print(len(names.words('female.txt'))) male_names = names.words('male.txt') female_names = names.words('female.txt') print("\nFirst 10 male names:") print(male_names[0:15]) print("\nFirst 10 female names:") print(female_names[0:15]) import random random.shuffle(n) def gender_features(word): return{'last_letter' : word[-1]} feature_sets = [(gender_features(n), gender) for (n, gender) in l] train_set, test_set = feature_sets[1000:], feature_sets[:1000] from nltk import NaiveBayesClassifier model = NaiveBayesClassifier.train(train_set) model.classify(gender_features('#whatever he asks')) model.classify(gender_features('#whatever he asks')) Clustering Hierarchical from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.cluster import KMeans documents = ['Mr. and Mrs. Dursley, of number four, Privet Drive, were proud to say that they were perfectly normal, thank you very much.', 'They were the last people you’d expect to be involved in anything strange or mysterious, because they just didn’t hold with such nonsense.', 'Mr. Dursley was the director of a firm called Grunnings, which made drills.', 'He was a big, beefy man with hardly any neck, although he did have a very large mustache.', 'Mrs. Dursley was thin and blonde and had nearly twice the usual amount of neck, which came in very useful as she spent so much of her time craning over garden fences, spying on the neighbors.', 'The Dursley s had a small son called Dudley and in their opinion there was no finer boy anywhere.'] documents vectorizer = TfidfVectorizer(stop_words = 'english') X = vectorizer.fit_transform(documents) terms = vectorizer.get_feature_names() from sklearn.metrics.pairwise import cosine_similarity dist = 1- cosine_similarity(X) dist import matplotlib.pyplot as plt from scipy.cluster.hierarchy import ward, dendrogram linkage_matrix = ward(dist) fig, ax = plt.subplots(figsize = (8,8)) #set size ax = dendrogram(linkage_matrix, orientation = 'right', labels = documents); plt.tick_params(\ axis = 'x', which = 'both', bottom = 'off', top = 'off', labelbottom = 'off') plt.tight_layout() K Means model = KMeans(n_clusters = 2, init = 'k-means++', max_iter = 100, n_init = 1) model.fit(X) # top ten terms/words per cluster order_centroids = model.cluster_centers_.argsort()[:, ::-1] terms = vectorizer.get_feature_names() for i in range(2): print("Cluster Number:", i), for c in order_centroids[i, :10]: print('%s' % terms[c]) Y = vectorizer.transform(["Harry Potter is not Harry Styles"]) model.predict(Y) Preprocessing External Data Preprocessing(importing dataset, defining the function) import re import nltk import inflect from nltk import word_tokenize, sent_tokenize from nltk.corpus import stopwords from nltk.stem import LancasterStemmer, WordNetLemmatizer file = open("dataset path.txt", encoding = 'utf-8').read() words = word_tokenize(file) def to_lowercase(words): #'''Convert all the characters into lowercase from the list of tokenized words''' new_words = [] for word in words: new_word = word.lower() new_words.append(new_word) return new_words words = to_lowercase(words) #print(words) def remove_punctuation(words): #'''Remove all the punctuation marks from the list of tokenized words''' new_words = [] for word in words: new_word = re.sub(r'[^\w\s]', '', word) if new_word != '': new_words.append(new_word) return new_words words = remove_punctuation(words) #print(words) def replace_numbers(words): #'''Replace all integer occurrences in the list of tokenized words''' p = inflect.engine() new_words = [] for word in words: if word.isdigit(): new_word = p.number_to_words(word) new_words.append(new_word) else: new_words.append(word) return(new_words) words = replace_numbers(words) #print(words) def remove_stopwords(words): #'''Remove stop words from the list of tokenized words''' new_words = [] for word in words: if word not in stopwords.words('english'): new_words.append(word) return new_words words = remove_stopwords(words) #print(words) def stem_words(words): #'''Finding stem words in the list of tokenized words''' stemmer = LancasterStemmer() stems = [] for word in words: stem = stemmer.stem(word) stems.append(stem) return stems words = stem_words(words) #print(words) def lemmatize_words(words): #'''Lemmatize verbs in the list of tokenized words''' lemmatizer = WordNetLemmatizer() lemmas = [] for word in words: lemma = lemmatizer.lemmatize(word, pos = 'v') lemmas.append(lemma) return lemmas words = lemmatize_words(words) #print(words) print(words) Text preprocessing(non user defined) import nltk import re import string import inflect from nltk.corpus import stopwords from nltk import word_tokenize series = open("dataset path.txt".txt").read() series series_lower = series.lower() # Removal of numbers result1 = re.sub(r'\d+', '', series_lower) #result1 # Removal of punctuations result2 = result1.translate(str.maketrans('','',string.punctuation)) #result2 # Removing white spaces result3 = result2.strip() #result3 # Removal of stopwords # Tokenize the text result3_tokens = word_tokenize(result3) #result3_tokens # Removing stopwords sw = set(stopwords.words('english')) result4 = [] for w in result3_tokens: if w not in sw: result4.append(w) #result4 text_tokenize = result4 #text_tokenize output = nltk.pos_tag(text_tokenize) #output Sentiment Analysis import pandas as pd import re import string from nltk.tokenize import word_tokenize from nltk.corpus import stopwords from nltk.stem import PorterStemmer from nltk.stem import WordNetLemmatizer import nltk from wordcloud import WordCloud import matplotlib.pyplot as plt file = open("dataset path.txt".txt", encoding = 'utf-8').read() # These are not required. DO Only if asked. # this code, clean data 2 and clean data 3 cleandata1 = file.lower() #cleandata1 cleandata2 = re.sub(r'[^\w\s]','', cleandata1) #cleandata2 cleandata3 = re.sub(r'\d+', ' ', cleandata2) #cleandata3 stop_words = set(stopwords.words('english')) #stop_words #let us remove them using function removeWords() tokens = word_tokenize(cleandata3) cleandata4 = [i for i in tokens if not i in stop_words] cleandata4 cleandata4 = " ".join(str(x) for x in cleandata4) #cleandata4 cleandata5 = ' '.join(i for i in cleandata4.split() if not (i.isalpha() and len(i)==1)) #cleandata5 cleandata6 = cleandata5.strip() #cleandata6 ## Frequency of words words_dict = {} for word in cleandata6.split(): words_dict[word] = words_dict.get(word, 0)+1 for key in sorted(words_dict): print("{}:{}".format(key,words_dict[key])) wordcloud = WordCloud(width=480, height=480, margin=0).generate(cleandata6) # Display the generated image: plt.imshow(wordcloud, interpolation='bilinear') plt.axis("off") plt.margins(x=0, y=0) plt.show() #with max words wordcloud = WordCloud(width=480, height=480, max_words=5).generate(cleandata6) plt.figure() plt.imshow(wordcloud, interpolation="bilinear") plt.axis("off") plt.margins(x=0, y=0) plt.show() from textblob import TextBlob from textblob.sentiments import NaiveBayesAnalyzer Bag of Words from sklearn.feature_extraction.text import CountVectorizer sentences = ["Hello how are you", "Hi students are you all good", "Okay lets study bag of words"] sentences cv = CountVectorizer() bow = cv.fit_transform(sentences).toarray() cv.vocabulary_ cv.get_feature_names() bow NLTK Basics import nltk from nltk.book import * #similar text6.similar('King') text6.concordance('King') sents() len(text1) #lines tells how many lines you want. You can run the code without the lines also text3.concordance('lived', lines = 38) text3.common_contexts(['earth', 'heaven']) text1.common_contexts(['captain', 'whale']) #text3.collocations() text3.collocation_list() #Put number inside bracket to get only how many is required text6.collocation_list(5) text6.generate(5) len(text3) from nltk import lm help(lm) text = "Hello students, we are studying Parts of Speech Tagging. Lets understand the process of\ shallow parsing or Chunking. Here were are drawing the tree corresponding to the words \ and the POS tags based on a set grammer regex patter." words = nltk.word_tokenize(text) #words tags = nltk.pos_tag(words) #tags # idk what this is grammar = (''' NP: {<DT><JJ><NN>} ''') grammar freq = FreqDist(text3) freq freq.most_common(50) freq['father'] freq.plot(20, cumulative = True) freq.plot(20) freq.tabulate() freq.max() [i for i in sent3 if len(i) > 8] [i for i in sent3 if len(i) != 3] [i for i in sent3 if len(i) <= 3] l = [] for i in sent3: if((len(i)) <= 3): l.append(i) print(l) # print(len(l)) Simple Regex Regex on strings¶ import re egstring = ''' Jessica is 15 years old, and Daniel is 27 years old. Edward is 97 years old, and his grandfather, Oscar, is 108 years old ''' ages = re.findall(r'\d{1,3}', egstring) names = re.findall(r'[A-Z][a-z]*', egstring) print(ages) print(names) result = re.split(r'\d{1,3}', egstring) print(result) string = "Python is fun" match = re.search('\APython', string) if match: print("pattern found inside the string") else: print("pattern not found") Email # example #pattern = r'\w{4}_\d{2}\w{5}.\w{4}@w{5}.\w{3} #pattern1 = r'[a-z]+_[0-9a-z]+.[a-z]+@[a-z.]+' #email_string = "[email protected]" generic_pattern = r'[a-zA-Z0-9._]+@[a-z]+.[a-z]+' email_string1 = "[email protected]" if(re.match(generic_pattern, email_string1) != None): print(True) else: print(False) # Entering an Email email = input ("Enter an email") email_list = ["[email protected]", "[email protected]", " [email protected]", "[email protected]", "[email protected]", "[email protected]"] email_list.append(email) print(email_list) #Function definition def email_match(email_ls): count = len(email_ls) gmail_pattern = r'[a-zA-Z0-9._]+@gmail.[a-z]+' hotmail_pattern = r'[a-zA-Z0-9._]+@hotmail.[a-z]+' yahoo_pattern = r'[a-zA-Z0-9._]+@yahoo.[a-z]+' print("---") print("GMAIL MAILS") for i in range(0,count): if(re.match(gmail_pattern, email_ls[i]) != None): print(email_ls[i]) print("---") print("HOTMAIL MAILS") for i in range(0,count): if(re.match(hotmail_pattern, email_ls[i]) != None): print(email_ls[i]) print("---") print("YAHOO MAILS") for i in range(0,count): if(re.match(yahoo_pattern, email_ls[i]) !=None): print(email_ls[i]) #Calling the function email_match(email_list) POS import nltk from nltk import pos_tag from nltk import word_tokenize sample_text = word_tokenize("The classes are reopening on 15th March in St. Joseph's College of Commerce") sample_text pos_tag(sample_text) nltk.help.upenn_tagset("DT") nltk.help.upenn_tagset("VBP") # do for what is asked or how many ever are asked #nltk.help.upenn_tagset("NNS") text = nltk.Text(word.lower() for word in nltk.corpus.brown.words()) text text.similar("boy") text.similar("test") var1 = nltk.tag.str2tuple("SJCC/NNP") var1 var1[1] sentence = ''' The/DT classes/NNS are/VBP reopening/VBG from/IN 15th/CD March'2021/NNP in/IN St./NNP Joseph/NNP 's/POS College/NNP ''' sentence abc = [nltk.tag.str2tuple(i) for i in sentence.split()] abc abc = [nltk.tag.str2tuple(i) for i in sentence.split()] abc nltk.corpus.brown.tagged_words() nltk.help.brown_tagset('AT') nltk.help.brown_tagset('NP-TL') nltk.corpus.indian.tagged_words() nltk.help.indian_tagset('SYM') |