-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rhistory
512 lines (512 loc) · 15.3 KB
/
.Rhistory
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#####################################################
# PRE-PROCESSING #
library(tm)
library(RWeka)
library(data.table)
library(SnowballC)
# Trigrams
tfreq=readRDS("t.no4counts.RDS")
bfreq=readRDS("b.no4counts.RDS")
nfreq=readRDS("n.no4counts.RDS")
afreq=readRDS("ALL.no4counts.RDS")
## FUNCTION DEFINITIONS ##
# Make Corpus and do transformations
makeCorpus<- function(x) {
corpus<-Corpus(VectorSource(x))
# corpus <- tm_map(corpus, stripWhitespace)
corpus <- tm_map(corpus, content_transformer(tolower))
# corpus <- tm_map(corpus, removeWords, stopwords("english"))
corpus <- tm_map(corpus, stemDocument)
corpus<- tm_map(corpus,removePunctuation)
# corpus<- tm_map(corpus,removeNumbers)
return(corpus)
}
process<- function(x) {
# Text Transformations to remove odd characters #
# replace APOSTROPHES OF 2 OR MORE with space - WHY??? that never happens..
# output=lapply(output,FUN= function(x) gsub("'{2}"rr, " ",x))
# Replace numbers with spaces... not sure why to do that yet either.
# output=lapply(output,FUN= function(x) gsub("[0-9]", " ",x))
# Erase commas.
x=gsub(",?", "", x)
# Erase ellipsis
x=gsub("\\.{3,}", "", x)
# Erase colon
x=gsub("\\:", "", x)
# Merge on contractions (apostrophe):
x=gsub("\\'", "", x)
# Erase |:
x=gsub("\\|", "", x)
# Erase {}:
x=gsub("\\{", "", x)
x=gsub("\\}", "", x)
##### SENTENCE SPLITTING AND CLEANUP
# Split into sentences only on single periods or any amount of question marks or exclamation marks and -
# ok here is where you change structure fundamentally...
# Faster if I unlist once? no i guess it keeps getting relisted.
x<-strsplit(unlist(x),"[\\.]{1}")
x<-strsplit(unlist(x),"\\?+")
x<-strsplit(unlist(x),"\\!+") # Error: non-character argument?
x<-strsplit(unlist(x),"\\-+")
# Split also on parentheses
x<-strsplit(unlist(x),"\\(+")
x<-strsplit(unlist(x),"\\)+")
# split also on quotation marks
x<-strsplit(unlist(x),"\\\"")
# remove spaces at start and end of sentences:
# HERE is where the problem begins. why?
x<-gsub("^\\s+", "", unlist(x))
x<-gsub("\\s+$", "", unlist(x))
# Replace ~ and any whitespace around with just one space
x<-gsub("\\s*~\\s*", " ", unlist(x))
# Replace forward slash with space
x<-gsub("\\/", " ", unlist(x))
# Replace + signs with space
x<-gsub("\\+", " ", unlist(x))
# it s a
x<-gsub("it s ", "its ", unlist(x))
# 'i m not'
x<-gsub("i m not", "im not", unlist(x))
# 'i didn t'
x<-gsub("i didn t", "i didnt", unlist(x))
# 'i don t'
x<-gsub("i don t", "i dont", unlist(x))
# ' i m '
x<-gsub(" i m ", " im ", unlist(x))
# Eliminate empty and single letter values (more?)
x=x[which(nchar(x)!=1)]
x=x[which(nchar(x)!=0)]
}
classify=function(y,z){
total=length(z)-2
correct=0
lapply(1:total,FUN=function(x){
# loop through sentence making bigram and answer,
bigram=paste(z[x], z[x+1])
answer=paste(z[x+2])
# then check answer against predicted answer.
# Get answer
Xpred=data.table(y[grep(paste0("^",bigram," "),y$grams),][order(-counts)])
# isolate the answer from prediction table.
Xpred=unlist(strsplit(Xpred[1]$grams,"\\s+"))
Xpred=Xpred[length(Xpred)]
# Test equality of prediction to actual and counter for the accuracy measure
if(!is.na(Xpred)){
if(Xpred==answer){correct=correct+1}
correct<<-correct
}
})
accuracy = correct/total
return(accuracy)
}
#### INPUT MUNGING ####
getPred=function(x){
# Take an input:
test=x
# transform as training set was (lowercase, stem, strip punctuation etc.)
test=iconv(test, to='ASCII', sub=' ')
test=process(test)
test=paste0(test, collapse=" ")
corpus<-makeCorpus(test)
corpus=as.character(corpus[[1]][1])
# Split by words:
words<-unlist(strsplit(corpus,"\\s+"))
# Classify text (if 3 words or more)
Tfreq=afreq
if(length(words)>=3){
b.acc=classify(bfreq,words)
t.acc=classify(tfreq,words)
n.acc=classify(nfreq,words)
a.acc=classify(afreq,words)
# Select frequency table based on classification results.
if(b.acc>t.acc && b.acc>n.acc && b.acc>a.acc){
Tfreq=bfreq
} else if(t.acc>b.acc && t.acc>n.acc && t.acc>a.acc){
Tfreq=tfreq
} else if(n.acc>b.acc && n.acc>t.acc && n.acc>a.acc){
Tfreq=nfreq
} else {
Tfreq=afreq
}
}
# Isolate last two words of the sentence
history=words[(length(words)-1):length(words)]
nMin1=words[length(words)]
history=paste(as.character(history),collapse=' ')
histstring=str_replace_all(history, "[[:punct:]]", "?")
# Make prediction list of matches:
Tpred=data.table(Tfreq[grep(paste0("^",histstring," "),Tfreq$grams),][order(-counts)])
# Isolate top prediction:
pred=Tpred[1]$grams
pred=unlist(strsplit(pred,"\\s+"))
pred=pred[length(pred)]
if(is.na(pred)){
pred="the"
}
return(pred)
}
library(compiler)
process.=cmpfun(process)
getPred.=cmpfun(getPred)
classify.=cmpfun(classify)
classify=function(y,z,t){
correct=0
lapply(1:t,FUN=function(x){
# loop through sentence making bigram and answer,
bigram=paste(z[x], z[x+1])
answer=paste(z[x+2])
# then check answer against predicted answer.
# Get answer
Xpred=data.table(y[grep(paste0("^",bigram," "),y$grams),][order(-counts)])
# isolate the answer from prediction table.
Xpred=unlist(strsplit(Xpred[1]$grams,"\\s+"))
Xpred=Xpred[length(Xpred)]
# Test equality of prediction to actual and counter for the accuracy measure
if(!is.na(Xpred)){
if(Xpred==answer){correct=correct+1}
correct<<-correct
}
classify=function(y,z,t){
correct=0
lapply(1:t,FUN=function(x){
# loop through sentence making bigram and answer,
bigram=paste(z[x], z[x+1])
answer=paste(z[x+2])
# then check answer against predicted answer.
# Get answer
Xpred=data.table(y[grep(paste0("^",bigram," "),y$grams),][order(-counts)])
# isolate the answer from prediction table.
Xpred=unlist(strsplit(Xpred[1]$grams,"\\s+"))
Xpred=Xpred[length(Xpred)]
# Test equality of prediction to actual and counter for the accuracy measure
if(!is.na(Xpred)){
if(Xpred==answer){correct=correct+1}
correct<<-correct
}
})
accuracy = correct/total
return(accuracy)
}
classify.=cmpfun(classify)
getPred=function(x){
# Take an input:
test=x
# transform as training set was (lowercase, stem, strip punctuation etc.)
test=iconv(test, to='ASCII', sub=' ')
test=process(test)
test=paste0(test, collapse=" ")
corpus<-makeCorpus(test)
corpus=as.character(corpus[[1]][1])
# Split by words:
words<-unlist(strsplit(corpus,"\\s+"))
# Classify text (if 3 words or more)
Tfreq=afreq
if(length(words)>=3){
total=length(words)-2
b.acc=classify(bfreq,words,total)
t.acc=classify(tfreq,words,total)
n.acc=classify(nfreq,words,total)
a.acc=classify(afreq,words,total)
# Select frequency table based on classification results.
if(b.acc>t.acc && b.acc>n.acc && b.acc>a.acc){
Tfreq=bfreq
} else if(t.acc>b.acc && t.acc>n.acc && t.acc>a.acc){
Tfreq=tfreq
} else if(n.acc>b.acc && n.acc>t.acc && n.acc>a.acc){
Tfreq=nfreq
} else {
Tfreq=afreq
}
}
# Isolate last two words of the sentence
history=words[(length(words)-1):length(words)]
nMin1=words[length(words)]
history=paste(as.character(history),collapse=' ')
histstring=str_replace_all(history, "[[:punct:]]", "?")
# Make prediction list of matches:
Tpred=data.table(Tfreq[grep(paste0("^",histstring," "),Tfreq$grams),][order(-counts)])
# Isolate top prediction:
pred=Tpred[1]$grams
pred=unlist(strsplit(pred,"\\s+"))
pred=pred[length(pred)]
if(is.na(pred)){
pred="the"
}
return(pred)
}
getPred.=cmpfun(getPred)
classify.=cmpfun(classify)
counts=2
total=2
getPred.=cmpfun(getPred)
classify.=cmpfun(classify)
getPred=function(x){
# Take an input:
test=x
# transform as training set was (lowercase, stem, strip punctuation etc.)
test=iconv(test, to='ASCII', sub=' ')
test=process.(test)
test=paste0(test, collapse=" ")
corpus<-makeCorpus(test)
corpus=as.character(corpus[[1]][1])
# Split by words:
words<-unlist(strsplit(corpus,"\\s+"))
# Classify text (if 3 words or more)
Tfreq=afreq
if(length(words)>=3){
total=length(words)-2
b.acc=classify.(bfreq,words,total)
t.acc=classify.(tfreq,words,total)
n.acc=classify.(nfreq,words,total)
a.acc=classify.(afreq,words,total)
# Select frequency table based on classification results.
if(b.acc>t.acc && b.acc>n.acc && b.acc>a.acc){
Tfreq=bfreq
} else if(t.acc>b.acc && t.acc>n.acc && t.acc>a.acc){
Tfreq=tfreq
} else if(n.acc>b.acc && n.acc>t.acc && n.acc>a.acc){
Tfreq=nfreq
} else {
Tfreq=afreq
}
}
# Isolate last two words of the sentence
history=words[(length(words)-1):length(words)]
nMin1=words[length(words)]
history=paste(as.character(history),collapse=' ')
histstring=str_replace_all(history, "[[:punct:]]", "?")
# Make prediction list of matches:
Tpred=data.table(Tfreq[grep(paste0("^",histstring," "),Tfreq$grams),][order(-counts)])
# Isolate top prediction:
pred=Tpred[1]$grams
pred=unlist(strsplit(pred,"\\s+"))
pred=pred[length(pred)]
if(is.na(pred)){
pred="the"
}
return(pred)
}
getPred.=cmpfun(getPred)
rm(classify)
rm(getPred)
makeCorpus.=cmpfun(makeCorpus)
getPred=function(x){
# Take an input:
test=x
# transform as training set was (lowercase, stem, strip punctuation etc.)
test=iconv(test, to='ASCII', sub=' ')
test=process.(test)
test=paste0(test, collapse=" ")
corpus<-makeCorpus.(test)
corpus=as.character(corpus[[1]][1])
# Split by words:
words<-unlist(strsplit(corpus,"\\s+"))
# Classify text (if 3 words or more)
Tfreq=afreq
if(length(words)>=3){
total=length(words)-2
b.acc=classify.(bfreq,words,total)
t.acc=classify.(tfreq,words,total)
n.acc=classify.(nfreq,words,total)
a.acc=classify.(afreq,words,total)
# Select frequency table based on classification results.
if(b.acc>t.acc && b.acc>n.acc && b.acc>a.acc){
Tfreq=bfreq
} else if(t.acc>b.acc && t.acc>n.acc && t.acc>a.acc){
Tfreq=tfreq
} else if(n.acc>b.acc && n.acc>t.acc && n.acc>a.acc){
Tfreq=nfreq
} else {
Tfreq=afreq
}
}
# Isolate last two words of the sentence
history=words[(length(words)-1):length(words)]
nMin1=words[length(words)]
history=paste(as.character(history),collapse=' ')
histstring=str_replace_all(history, "[[:punct:]]", "?")
# Make prediction list of matches:
Tpred=data.table(Tfreq[grep(paste0("^",histstring," "),Tfreq$grams),][order(-counts)])
# Isolate top prediction:
pred=Tpred[1]$grams
pred=unlist(strsplit(pred,"\\s+"))
pred=pred[length(pred)]
if(is.na(pred)){
pred="the"
}
return(pred)
}
getPred.=cmpfun(getPred)
rm(makeCorpus,process)
rm(getPred)
rm(counts)
rm(total)
save.image("C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Coursera-SwiftKey/final/en_US/no4CountsCompiledFuncs.Rdata.RData")
?save.image
?saveRDS
load("C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Coursera-SwiftKey/final/en_US/no4CountsCompiledFuncs.RData")
getPred=function(x){
# Take an input:
test=x
# transform as training set was (lowercase, stem, strip punctuation etc.)
test=iconv(test, to='ASCII', sub=' ')
test=process.(test)
test=paste0(test, collapse=" ")
corpus<-makeCorpus.(test)
corpus=as.character(corpus[[1]][1])
# Split by words:
words<-unlist(strsplit(corpus,"\\s+"))
# Classify text (if 3 words or more)
Tfreq=afreq
if(length(words)>=3){
total=length(words)-2
if(total>5){total=5}
b.acc=classify.(bfreq,words,total)
t.acc=classify.(tfreq,words,total)
n.acc=classify.(nfreq,words,total)
a.acc=classify.(afreq,words,total)
# Select frequency table based on classification results.
if(b.acc>t.acc && b.acc>n.acc && b.acc>a.acc){
Tfreq=bfreq
} else if(t.acc>b.acc && t.acc>n.acc && t.acc>a.acc){
Tfreq=tfreq
} else if(n.acc>b.acc && n.acc>t.acc && n.acc>a.acc){
Tfreq=nfreq
} else {
Tfreq=afreq
}
}
# Isolate last two words of the sentence
history=words[(length(words)-1):length(words)]
nMin1=words[length(words)]
history=paste(as.character(history),collapse=' ')
histstring=str_replace_all(history, "[[:punct:]]", "?")
# Make prediction list of matches:
Tpred=data.table(Tfreq[grep(paste0("^",histstring," "),Tfreq$grams),][order(-counts)])
# Isolate top prediction:
pred=Tpred[1]$grams
pred=unlist(strsplit(pred,"\\s+"))
pred=pred[length(pred)]
if(is.na(pred)){
pred="the"
}
return(pred)
}
getPred.=cmpfun(getPred)
counts=2
getPred.=cmpfun(getPred)
rm(getPred,counts)
save.image("C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Coursera-SwiftKey/final/en_US/no4CountsCompiledFuncs.2.RData")
setwd("C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Coursera-SwiftKey/final/en_US")
library(tm)
library(RWeka)
library(data.table)
library(SnowballC)
library(stringr)
# process.=cmpfun(process)
# classify.=cmpfun(classify)
# makeCorpus.=cmpfun(makeCorpus)
## FUNCTION DEFINITIONS ##
# Make Corpus and do transformations
makeCorpus<- function(x) {
corpus<-Corpus(VectorSource(x))
# corpus <- tm_map(corpus, stripWhitespace)
corpus <- tm_map(corpus, content_transformer(tolower))
# corpus <- tm_map(corpus, removeWords, stopwords("english"))
corpus <- tm_map(corpus, stemDocument)
corpus<- tm_map(corpus,removePunctuation)
# corpus<- tm_map(corpus,removeNumbers)
return(corpus)
}
process<- function(x) {
x=gsub(",?", "", x)
x=gsub("\\.{3,}", "", x)
x=gsub("\\:", "", x)
x=gsub("\\'", "", x)
x=gsub("\\|", "", x)
x=gsub("\\{", "", x)
x=gsub("\\}", "", x)
x<-strsplit(unlist(x),"[\\.]{1}")
x<-strsplit(unlist(x),"\\?+")
x<-strsplit(unlist(x),"\\!+") # Error: non-character argument?
x<-strsplit(unlist(x),"\\-+")
x<-strsplit(unlist(x),"\\(+")
x<-strsplit(unlist(x),"\\)+")
x<-strsplit(unlist(x),"\\\"")
x<-gsub("^\\s+", "", unlist(x))
x<-gsub("\\s+$", "", unlist(x))
x<-gsub("\\s*~\\s*", " ", unlist(x))
x<-gsub("\\/", " ", unlist(x))
x<-gsub("\\+", " ", unlist(x))
x<-gsub("it s ", "its ", unlist(x))
x<-gsub("i m not", "im not", unlist(x))
x<-gsub("i didn t", "i didnt", unlist(x))
x<-gsub("i don t", "i dont", unlist(x))
x<-gsub(" i m ", " im ", unlist(x))
x=x[which(nchar(x)!=1)]
x=x[which(nchar(x)!=0)]
}
classify=function(y,z,t){
correct=0
lapply(1:t,FUN=function(x){
# loop through sentence making bigram and answer,
bigram=paste(z[x], z[x+1])
answer=paste(z[x+2])
# then check answer against predicted answer.
# Get answer
Xpred=data.table(y[grep(paste0("^",bigram," "),y$grams),][order(-counts)])
# isolate the answer from prediction table.
Xpred=unlist(strsplit(Xpred[1]$grams,"\\s+"))
Xpred=Xpred[length(Xpred)]
# Test equality of prediction to actual and counter for the accuracy measure
if(!is.na(Xpred)){
if(Xpred==answer){correct=correct+1}
correct<<-correct
}
})
accuracy = correct/length(z)
return(accuracy)
}
getPred=function(x){
# Take an input:
test=scan("Quiz3.txt", what="character",n=1,skip=x)
# transform as training set was (lowercase, stem, strip punctuation etc.)
test=iconv(test, to='ASCII', sub=' ')
test=process(test)
test=paste0(test, collapse=" ")
corpus<-makeCorpus(test)
corpus=as.character(corpus[[1]][1])
# Split by words:
words<-unlist(strsplit(corpus,"\\s+"))
Tfreq=afreq
# Isolate last two words of the sentence
history=words[(length(words)-1):length(words)]
nMin1=words[length(words)]
history=paste(as.character(history),collapse=' ')
histstring=str_replace_all(history, "[[:punct:]]", "?")
# Make prediction list of matches:
Tpred=data.table(Tfreq[grep(paste0("^",histstring," "),Tfreq$grams),][order(-counts)])
# Isolate top prediction:
pred=Tpred[1]$grams
pred=unlist(strsplit(pred,"\\s+"))
pred=pred[length(pred)]
if(is.na(pred)){
pred="the"
}
t=length(words)-2
classify(Tfreq,words,t)
}
# Trigrams
afreq=readRDS("ALL.no4counts.RDS")
library(compiler)
getPred.=cmpfun(getPred)
# OUTPUT ACCURACY #
results=unlist(lapply(0:9,getPred.))
mean(results)
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')
shiny::runApp('C:/Users/Michael/SkyDrive/Code/GitHub/DSCapstone/Predictor')