-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext-processing.R
75 lines (60 loc) · 1.87 KB
/
context-processing.R
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
library(tm)
# Where entities are in a sentence
filterContext<-function(entity.pair, sentence, filter.type, frequencies)
{
#Log from analyzed sentence
cat("Candidate sentence: \"", sentence, "\"\n\n", sep='')
center<-debugEntities(entity.pair, sentence,
frequencies[1], frequencies[2])
#Obtain the right context
if (filter.type=="middle")
context<-center
else if (filter.type=="everything")
context<-sentence
else
stop("Unknown filter type")
context
}
# Locate the right sentence based on the right paragraph
getSentence<-function(position, sentence.set)
{
sentences<-strsplit(sentence.set, "\\.|!|\\?")
#Paragraph and then sentence
sentences[[position[1]]][position[2]]
}
# Context extraction from a text or a file
extractContext<-function(text.file, sentence.position, context.entities, entity.frequency)
{
#Verify what is the context type
context<-match(what.context,c('between','all'))
if (is.na(context))
stop("Context type is not correctly defined")
if (text.file=="?")
{
text<-VCorpus(VectorSource(textual.content),
readerControl=list(language=idiom,id="id1"))
document<-1
}
else
{
text<-VCorpus(DirSource(directory=textual.content,pattern=text.file),
readerControl=list(language=idiom,id="id1"))
document<-text.file
}
my.corpus<-tm_map(text, removeNumbers)
text.sentences<-(as.character(my.corpus[[document]]))
sentence<-getSentence(sentence.position, text.sentences)
#Get every words
if (context==1)
{
#Exceptio for words before left entity and after right entity
context<-filterContext(context.entities, sentence,
"middle", entity.frequency)
}
else if(context==2)
{
context<-filterContext(context.entities, sentence,
"everything", entity.frequency)
}
context
}