blob: f56423132e8941fa8388f55f899d2dbc932e4093 [file] [log] [blame]
Marc Kupietzc3bf3502021-02-19 17:18:57 +01001library(caret)
2library(tidyverse)
3library(DMwR)
4library(randomForest)
5library(FSelector)
6# library(randomForestExplainer)
7# may need to: options(expressions = 5e5) to avoid stackoverflow for installing package
8
Marc Kupietz358a2962021-02-22 07:55:49 +01009set.seed(42)
10
PeterFankhauserIDSed93d2e2021-02-20 14:51:13 +010011# Test
12
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010013ngramfile<-"gold03_anno_ml_synfeat_nstopw"
14
Marc Kupietzc3bf3502021-02-19 17:18:57 +010015setwd(dirname(rstudioapi::getSourceEditorContext()$path))
16stopwords <- readLines(con = "../data/stopwords.txt",encoding="UTF-8")
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010017oringramme <- read.csv(paste("../data/",ngramfile,".csv",sep=""), header = TRUE, sep = "\t", dec=".", quote="", encoding="UTF-8",stringsAsFactors=FALSE)
Marc Kupietzc3bf3502021-02-19 17:18:57 +010018syfeaturenames <- read.csv("../data/syfeatures.tsv", header = TRUE, sep = "\t", dec=".", quote="", encoding="UTF-8",stringsAsFactors=FALSE)
19# syfeaturenames$navalue<-sapply(syfeaturenames$navalue,as.numeric)
20
21deleteStopwords = function(wl, stopwords = NULL) {
22 wl[!(wl %in% stopwords)]
23}
24
Marc Kupietz631800f2021-02-19 17:27:26 +010025oringramme <- oringramme %>%
26 filter(CO_IDIOM < 2) # just two classes: 0 no idiom, 1 idiom
27
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010028# Reduce number of classes, treat null values, add NSTOPW, change names for SY features
29
Marc Kupietzc3bf3502021-02-19 17:18:57 +010030ngramme <- oringramme %>%
31 add_column(NSTOPW = sapply(oringramme$tokens,function(x) length(deleteStopwords(tolower(unlist(strsplit(x," "))),stopwords)))) %>%
32 # select(-matches("CO_TOKEN.*"), -tokens) %>%
33 select(-matches("CO_TOKEN.*")) %>% # keep tokens for interpretability
34 mutate(across(matches(".rank.*"), ~ replace_na(.x, 1000))) %>%
35 mutate(across(c("dice", "lfmd", "llr", "ld", "pmi"), ~ replace_na(.x, min(.x) - 1))) %>%
Marc Kupietzaced2702021-02-19 19:09:29 +010036 rename_at(syfeaturenames$innames, ~ syfeaturenames[syfeaturenames$innames==.x,]$synames ) %>%
Marc Kupietzc3bf3502021-02-19 17:18:57 +010037 mutate(across(everything(), ~ replace_na(.x, 0))) %>%
Marc Kupietz201e6f32021-02-22 12:34:13 +010038 mutate(CO_IDIOM = as.factor(if_else(CO_IDIOM == 1, "idiom", "no_idiom"))) # just two classes: 0 no idiom, 1 idiom
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010039
40# Optional
41write.table(ngramme,file=paste("../data/",ngramfile,"_cosy.csv",sep=""), sep = "\t", quote=F)
42
43# featuresets
Marc Kupietzc3bf3502021-02-19 17:18:57 +010044
45covars <- c("CO_LL", "CO_Z", "CO_G", "CO_T", "CO_LOGDICE", "CO_PMI", "CO_MI3", "CO_DEREKO", "CO_SGT", "CO_WIN5_VEC","CO_WIN5_VEC_AUTOSEM")
46syvars <- c(syfeaturenames$synames,"NSTOPW")
47vars <- c(covars,syvars)
48
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010049# formulae for training and testing rf
50
Marc Kupietzc3bf3502021-02-19 17:18:57 +010051fmla <- as.formula(paste("CO_IDIOM ~ ", paste(vars, collapse= "+")))
52fmlaco <- as.formula(paste("CO_IDIOM ~ ", paste(covars, collapse= "+")))
53fmlasy <- as.formula(paste("CO_IDIOM ~ ", paste(syvars, collapse= "+")))
54
55# Simple train/test split
56
57trainRows <- sample(nrow(ngramme), nrow(ngramme)*0.8, replace = FALSE)
58train <- ngramme[trainRows,]
59test <- ngramme[setdiff(1:nrow(ngramme),trainRows),]
60
Marc Kupietz355d5482021-02-22 17:13:56 +010061cat("Random Forest\n")
Marc Kupietz65733b22021-02-22 08:09:08 +010062
Marc Kupietz13f67ed2021-02-22 07:55:03 +010063rf_classifier = randomForest(fmla, train, importance=TRUE)
Marc Kupietzc3bf3502021-02-19 17:18:57 +010064
65# only SY features
66# rf_classifier = randomForest(fmlasy, train, ntree=100, mtry=10, importance=TRUE)
67
68prediction_for_table <- predict(rf_classifier, test %>% select(-CO_IDIOM))
69
Marc Kupietz201e6f32021-02-22 12:34:13 +010070res <- confusionMatrix(prediction_for_table, test$CO_IDIOM, positive= "idiom")
Marc Kupietz13f67ed2021-02-22 07:55:03 +010071print(res)
Marc Kupietz355d5482021-02-22 17:13:56 +010072collected_results <- bind_cols("rf" = res$byClass)
PeterFankhauserIDSc2622782021-02-21 18:10:01 +010073
74# Sensitivity is recall of class 1
75# Pos Pred Value is precision
Marc Kupietzc3bf3502021-02-19 17:18:57 +010076varImpPlot(rf_classifier)
77
Marc Kupietz355d5482021-02-22 17:13:56 +010078cat("Random Forest with cutoff\n")
79prediction_for_table <- predict(rf_classifier,test %>% select(-CO_IDIOM), cutoff = c(0.2, 0.8))
80res <- confusionMatrix(prediction_for_table,test$CO_IDIOM, positive = "idiom")
81collected_results <- bind_cols(collected_results, "rf with cutoff" = res$byClass)
82print(res)
Marc Kupietzc3bf3502021-02-19 17:18:57 +010083
Marc Kupietz355d5482021-02-22 17:13:56 +010084cat("With SMOTE resampled training data\n")
Marc Kupietzc3bf3502021-02-19 17:18:57 +010085smoted.data <- SMOTE(fmla, subset(train, select = c("CO_IDIOM", vars)), perc.over = 1200, perc.under = 100)
Marc Kupietz13f67ed2021-02-22 07:55:03 +010086rf_classifier = randomForest(fmla, smoted.data, importance=TRUE)
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010087prediction_for_table <- predict(rf_classifier,test %>% select(-CO_IDIOM))
Marc Kupietz201e6f32021-02-22 12:34:13 +010088res <- confusionMatrix(prediction_for_table,test$CO_IDIOM, positive = "idiom")
Marc Kupietz355d5482021-02-22 17:13:56 +010089collected_results <- bind_cols(collected_results, "rf with SMOTE" = res$byClass)
Marc Kupietz13f67ed2021-02-22 07:55:03 +010090print(res)
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +010091
Marc Kupietz355d5482021-02-22 17:13:56 +010092cat("With SMOTE and cutoff\n")
Marc Kupietz201e6f32021-02-22 12:34:13 +010093prediction_for_table <- predict(rf_classifier,test %>% select(-CO_IDIOM), cutoff = c(0.2, 0.8))
94res <- confusionMatrix(prediction_for_table,test$CO_IDIOM, positive = "idiom")
Marc Kupietz355d5482021-02-22 17:13:56 +010095collected_results <- bind_cols(collected_results, "rf with SMOTE and cutoff" = res$byClass)
Marc Kupietz1be40eb2021-02-22 08:10:29 +010096print(res)
97
Marc Kupietz355d5482021-02-22 17:13:56 +010098collected_results <- collected_results %>%
99 round(3) %>%
100 add_column(measure = names(res$byClass)) %>%
101 column_to_rownames("measure")
102
103View(collected_results)
Marc Kupietz1be40eb2021-02-22 08:10:29 +0100104
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100105# Using estimates by random forest on entire dataset
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100106
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100107library(randomForest)
Marc Kupietz13f67ed2021-02-22 07:55:03 +0100108rf_classifier_full = randomForest(fmla, data=ngramme, importance=TRUE)
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100109rf_classifier_full
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100110# class.error is 1 - recall
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100111varImpPlot(rf_classifier_full)
112
113# Feature ranking
114
115# rf features as table
116
117# correlated features seem to split their rankings
118
119rfranks<-importance(rf_classifier_full)[,3:4]
120
121# ttest
122
Marc Kupietz201e6f32021-02-22 12:34:13 +0100123idioms<-ngramme %>% filter(CO_IDIOM == "idiom")
124nonidioms<-ngramme %>% filter(CO_IDIOM != "idiom")
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100125
126ttestPvalues<-sapply(vars,
127 function(sel) t.test(idioms[sel],nonidioms[sel])$p.value)
128
129# information gain
130# multiply by 1000 to avoid undersized bins
131# features are ranked individually not matter their correlation
132igain<-information.gain(fmla, data=ngramme%>%mutate_at(vars, ~ . * 1000),unit="log2")
133
134featureRanks<-cbind(rfranks,igain,ttestPvalues)
135
136#randomForestExplainer::explain_forest(rf_classifier )
137
138# averate estimates and feature ranks over 10 runs
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100139
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100140errrate<-0
141conf<-matrix(0,2,3)
142featureRanks<-matrix(0,4,length(vars))
143for (i in 1:10) {
Marc Kupietz13f67ed2021-02-22 07:55:03 +0100144 rfc =randomForest(fmla, data=ngramme, importance=TRUE)
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100145 #rfc =randomForest(fmla, data=ngramme, ntree=100, importance=TRUE, cutoff=c(0.8,0.2))
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100146 errrate<-errrate+rfc$err.rate[100,1]
147 conf<-conf+rfc$confusion
148 featureRanks<-featureRanks+
149 cbind(importance(rfc)[,3:4],
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100150 information.gain(fmla, data=ngramme%>%mutate_at(vars, ~ . * 1000),unit="log2"),
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100151 sapply(vars,
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100152 function(sel) t.test(idioms[sel],nonidioms[sel])$p.value))
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100153 print(errrate/i)
154 conf1<-round(
155 rbind(
156 cbind(conf[,1:2]/i,(1-conf[,3]/i)*100),
157 c(100*diag(conf[,1:2])/colSums(conf[,1:2]),NA),
158 c(rowSums(conf[,1:2]/i),NA)),digits=2)
Marc Kupietz201e6f32021-02-22 12:34:13 +0100159 colnames(conf1)<-c("1","0","rec")
160 rownames(conf1)<-c("1","0","prec","sum")
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100161 print(conf1)
162}
163featureRanks<-featureRanks/10
PeterFankhauserIDSd1f3df82021-02-20 14:44:01 +0100164colnames(featureRanks)<-c("MeanDecreaseAccuracy","MeanDecreaseGini","InformationGain","Ttest")
Marc Kupietzc3bf3502021-02-19 17:18:57 +0100165
166
167
168