-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rhistory
512 lines (512 loc) · 24.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
library(tidyr)
library(purrr)
library(syuzhet)
# Load the data
utterance_train <- read.csv("dialogue_utterance_train.csv")
usefulness_train <- read.csv("dialogue_usefulness_train.csv")
utterance_validation <- read.csv("dialogue_utterance_validation.csv")
usefulness_validation <- read.csv("dialogue_usefulness_validation.csv")
utterance_test <- read.csv("dialogue_utterance_test.csv")
usefulness_test <- read.csv("dialogue_usefulness_test.csv")
# Ensure consistent column names
colnames(utterance_train)[1] <- "Dialogue_ID"
colnames(utterance_train)[3] <- "Interlocutor"
colnames(utterance_validation)[1] <- "Dialogue_ID"
colnames(utterance_validation)[3] <- "Interlocutor"
colnames(utterance_test)[1] <- "Dialogue_ID"
colnames(utterance_test)[3] <- "Interlocutor"
# Feature Engineering: Sentiment Analysis
compute_sentiment <- function(text) {
polarity <- get_sentiment(text, method = "syuzhet")
subjectivity <- get_nrc_sentiment(text)$positive - get_nrc_sentiment(text)$negative
return(data.frame(polarity = polarity, subjectivity = subjectivity))
}
utterance_train_sentiment <- utterance_train %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
utterance_validation_sentiment <- utterance_validation %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Aggregate features for each dialogue
extract_features <- function(df, usefulness) {
df %>%
group_by(Dialogue_ID) %>%
summarise(
total_utterances = n(),
avg_utterance_length = mean(nchar(Utterance_text)),
student_interactions = sum(Interlocutor == "Student"),
chatbot_interactions = sum(Interlocutor == "Chatbot"),
avg_polarity = mean(polarity, na.rm = TRUE),
avg_subjectivity = mean(subjectivity, na.rm = TRUE),
max_polarity = max(polarity, na.rm = TRUE),
min_polarity = min(polarity, na.rm = TRUE),
polarity_range = max(polarity, na.rm = TRUE) - min(polarity, na.rm = TRUE)
) %>%
inner_join(usefulness, by = "Dialogue_ID")
}
features_train <- extract_features(utterance_train_sentiment, usefulness_train)
features_validation <- extract_features(utterance_validation_sentiment, usefulness_validation)
# Create Usefulness Group for Boxplot Visualization
features_train <- features_train %>%
mutate(Usefulness_group = case_when(
Usefulness_score %in% c(1, 2) ~ "Low",
Usefulness_score %in% c(4, 5) ~ "High",
TRUE ~ "Medium"
))
# Boxplot visualization for Total Utterances and Average Polarity
# Total Utterances Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = total_utterances)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Total Utterances by Usefulness Group", x = "Usefulness Group", y = "Total Utterances") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Average Polarity Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = avg_polarity)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Average Polarity by Usefulness Group", x = "Usefulness Group", y = "Average Polarity") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Section 1: Feature Engineering and Visualization
# Check and install necessary libraries
necessary_packages <- c("dplyr", "ggplot2", "caret", "randomForest", "textclean", "tidyr", "purrr", "syuzhet")
for (package in necessary_packages) {
if (!requireNamespace(package, quietly = TRUE)) {
install.packages(package)
}
}
# Load the libraries
library(dplyr)
library(ggplot2)
library(caret)
library(randomForest)
library(textclean)
library(tidyr)
library(purrr)
library(syuzhet)
# Load the data
utterance_train <- read.csv("dialogue_utterance_train.csv")
usefulness_train <- read.csv("dialogue_usefulness_train.csv")
utterance_validation <- read.csv("dialogue_utterance_validation.csv")
usefulness_validation <- read.csv("dialogue_usefulness_validation.csv")
utterance_test <- read.csv("dialogue_utterance_test.csv")
usefulness_test <- read.csv("dialogue_usefulness_test.csv")
# Ensure consistent column names
colnames(utterance_train)[1] <- "Dialogue_ID"
colnames(utterance_train)[3] <- "Interlocutor"
colnames(utterance_validation)[1] <- "Dialogue_ID"
colnames(utterance_validation)[3] <- "Interlocutor"
colnames(utterance_test)[1] <- "Dialogue_ID"
colnames(utterance_test)[3] <- "Interlocutor"
# Feature Engineering: Sentiment Analysis
compute_sentiment <- function(text) {
polarity <- get_sentiment(text, method = "syuzhet")
subjectivity <- get_nrc_sentiment(text)$positive - get_nrc_sentiment(text)$negative
return(data.frame(polarity = polarity, subjectivity = subjectivity))
}
utterance_train_sentiment <- utterance_train %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
utterance_validation_sentiment <- utterance_validation %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Aggregate features for each dialogue
extract_features <- function(df, usefulness) {
df %>%
group_by(Dialogue_ID) %>%
summarise(
total_utterances = n(),
avg_utterance_length = mean(nchar(Utterance_text)),
student_interactions = sum(Interlocutor == "Student"),
chatbot_interactions = sum(Interlocutor == "Chatbot"),
avg_polarity = mean(polarity, na.rm = TRUE),
avg_subjectivity = mean(subjectivity, na.rm = TRUE),
max_polarity = max(polarity, na.rm = TRUE),
min_polarity = min(polarity, na.rm = TRUE),
polarity_range = max(polarity, na.rm = TRUE) - min(polarity, na.rm = TRUE)
) %>%
inner_join(usefulness, by = "Dialogue_ID")
}
features_train <- extract_features(utterance_train_sentiment, usefulness_train)
features_validation <- extract_features(utterance_validation_sentiment, usefulness_validation)
# Create Usefulness Group for Boxplot Visualization
features_train <- features_train %>%
mutate(Usefulness_group = case_when(
Usefulness_score %in% c(1, 2) ~ "Low Usefulness (Score 1-2)",
Usefulness_score %in% c(4, 5) ~ "High Usefulness (Score 4-5)",
TRUE ~ "Medium Usefulness (Score 3)"
))
# Boxplot visualization for Total Utterances and Average Polarity
# Total Utterances Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = total_utterances)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Total Utterances by Usefulness Group", x = "Usefulness Group", y = "Total Utterances") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Average Polarity Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = avg_polarity)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Average Polarity by Usefulness Group", x = "Usefulness Group", y = "Average Polarity") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Section 1: Feature Engineering and Visualization
# Check and install necessary libraries
necessary_packages <- c("dplyr", "ggplot2", "caret", "randomForest", "textclean", "tidyr", "purrr", "syuzhet")
for (package in necessary_packages) {
if (!requireNamespace(package, quietly = TRUE)) {
install.packages(package)
}
}
# Load the libraries
library(dplyr)
library(ggplot2)
library(caret)
library(randomForest)
library(textclean)
library(tidyr)
library(purrr)
library(syuzhet)
# Load the data
utterance_train <- read.csv("dialogue_utterance_train.csv")
usefulness_train <- read.csv("dialogue_usefulness_train.csv")
utterance_validation <- read.csv("dialogue_utterance_validation.csv")
usefulness_validation <- read.csv("dialogue_usefulness_validation.csv")
utterance_test <- read.csv("dialogue_utterance_test.csv")
usefulness_test <- read.csv("dialogue_usefulness_test.csv")
# Ensure consistent column names
colnames(utterance_train)[1] <- "Dialogue_ID"
colnames(utterance_train)[3] <- "Interlocutor"
colnames(utterance_validation)[1] <- "Dialogue_ID"
colnames(utterance_validation)[3] <- "Interlocutor"
colnames(utterance_test)[1] <- "Dialogue_ID"
colnames(utterance_test)[3] <- "Interlocutor"
# Feature Engineering: Sentiment Analysis
compute_sentiment <- function(text) {
polarity <- get_sentiment(text, method = "syuzhet")
subjectivity <- get_nrc_sentiment(text)$positive - get_nrc_sentiment(text)$negative
return(data.frame(polarity = polarity, subjectivity = subjectivity))
}
utterance_train_sentiment <- utterance_train %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
utterance_validation_sentiment <- utterance_validation %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Aggregate features for each dialogue
extract_features <- function(df, usefulness) {
df %>%
group_by(Dialogue_ID) %>%
summarise(
total_utterances = n(),
avg_utterance_length = mean(nchar(Utterance_text)),
student_interactions = sum(Interlocutor == "Student"),
chatbot_interactions = sum(Interlocutor == "Chatbot"),
avg_polarity = mean(polarity, na.rm = TRUE),
avg_subjectivity = mean(subjectivity, na.rm = TRUE),
max_polarity = max(polarity, na.rm = TRUE),
min_polarity = min(polarity, na.rm = TRUE),
polarity_range = max(polarity, na.rm = TRUE) - min(polarity, na.rm = TRUE)
) %>%
inner_join(usefulness, by = "Dialogue_ID")
}
features_train <- extract_features(utterance_train_sentiment, usefulness_train)
features_validation <- extract_features(utterance_validation_sentiment, usefulness_validation)
# Create Usefulness Group for Boxplot Visualization
features_train <- features_train %>%
mutate(Usefulness_group = case_when(
Usefulness_score %in% c(1, 2) ~ "Low Usefulness (Score 1-2)",
Usefulness_score %in% c(4, 5) ~ "High Usefulness (Score 4-5)",
TRUE ~ "Medium Usefulness (Score 3)"
))
# Boxplot visualization for Total Utterances and Average Polarity
# Total Utterances Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = total_utterances)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Total Utterances by Usefulness Group", x = "Usefulness Group", y = "Total Utterances") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "Medium Usefulness (Score 3)" = "yellow", "High Usefulness (Score 4-5)" = "green"))
# Average Polarity Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = avg_polarity)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Average Polarity by Usefulness Group", x = "Usefulness Group", y = "Average Polarity") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Section 1: Feature Engineering and Visualization
# Check and install necessary libraries
necessary_packages <- c("dplyr", "ggplot2", "caret", "randomForest", "textclean", "tidyr", "purrr", "syuzhet")
for (package in necessary_packages) {
if (!requireNamespace(package, quietly = TRUE)) {
install.packages(package)
}
}
# Load the libraries
library(dplyr)
library(ggplot2)
library(caret)
library(randomForest)
library(textclean)
library(tidyr)
library(purrr)
library(syuzhet)
# Load the data
utterance_train <- read.csv("dialogue_utterance_train.csv")
usefulness_train <- read.csv("dialogue_usefulness_train.csv")
utterance_validation <- read.csv("dialogue_utterance_validation.csv")
usefulness_validation <- read.csv("dialogue_usefulness_validation.csv")
utterance_test <- read.csv("dialogue_utterance_test.csv")
usefulness_test <- read.csv("dialogue_usefulness_test.csv")
# Ensure consistent column names
colnames(utterance_train)[1] <- "Dialogue_ID"
colnames(utterance_train)[3] <- "Interlocutor"
colnames(utterance_validation)[1] <- "Dialogue_ID"
colnames(utterance_validation)[3] <- "Interlocutor"
colnames(utterance_test)[1] <- "Dialogue_ID"
colnames(utterance_test)[3] <- "Interlocutor"
# Feature Engineering: Sentiment Analysis
compute_sentiment <- function(text) {
polarity <- get_sentiment(text, method = "syuzhet")
subjectivity <- get_nrc_sentiment(text)$positive - get_nrc_sentiment(text)$negative
return(data.frame(polarity = polarity, subjectivity = subjectivity))
}
utterance_train_sentiment <- utterance_train %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
utterance_validation_sentiment <- utterance_validation %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Aggregate features for each dialogue
extract_features <- function(df, usefulness) {
df %>%
group_by(Dialogue_ID) %>%
summarise(
total_utterances = n(),
avg_utterance_length = mean(nchar(Utterance_text)),
student_interactions = sum(Interlocutor == "Student"),
chatbot_interactions = sum(Interlocutor == "Chatbot"),
avg_polarity = mean(polarity, na.rm = TRUE),
avg_subjectivity = mean(subjectivity, na.rm = TRUE),
max_polarity = max(polarity, na.rm = TRUE),
min_polarity = min(polarity, na.rm = TRUE),
polarity_range = max(polarity, na.rm = TRUE) - min(polarity, na.rm = TRUE)
) %>%
inner_join(usefulness, by = "Dialogue_ID")
}
features_train <- extract_features(utterance_train_sentiment, usefulness_train)
features_validation <- extract_features(utterance_validation_sentiment, usefulness_validation)
# Create Usefulness Group for Boxplot Visualization
features_train <- features_train %>%
mutate(Usefulness_group = case_when(
Usefulness_score %in% c(1, 2) ~ "Low Usefulness (Score 1-2)",
Usefulness_score %in% c(4, 5) ~ "High Usefulness (Score 4-5)"
))
# Boxplot visualization for Total Utterances and Average Polarity
# Total Utterances Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = total_utterances)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Total Utterances by Usefulness Group", x = "Usefulness Group", y = "Total Utterances") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Average Polarity Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = avg_polarity)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Average Polarity by Usefulness Group", x = "Usefulness Group", y = "Average Polarity") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Section 2: Build Initial Machine Learning Model
# Remove Usefulness_group before training
features_train <- features_train %>% select(-Usefulness_group)
# Train a Random Forest model
set.seed(42)
rf_model <- suppressWarnings(randomForest(Usefulness_score ~ ., data = features_train, importance = TRUE))
print(rf_model)
# Predict on the validation set
predictions <- suppressWarnings(predict(rf_model, features_validation))
rmse <- sqrt(mean((predictions - features_validation$Usefulness_score)^2))
print(paste("RMSE on validation set:", rmse))
# Feature importance with colors and rounded values
importance_df <- as.data.frame(importance(rf_model))
importance_df <- importance_df[order(importance_df$IncNodePurity, decreasing = TRUE),]
importance_df$Feature <- rownames(importance_df)
ggplot(importance_df, aes(x = reorder(Feature, IncNodePurity), y = round(IncNodePurity, 2), fill = IncNodePurity)) +
geom_bar(stat = "identity") +
coord_flip() +
labs(title = "Feature Importance in Random Forest Model", x = "Features", y = "IncNodePurity") +
scale_fill_gradient(low = "blue", high = "red") +
theme_minimal()
# Section 3: Improve the Model
# Tune the Random Forest model using caret
train_control <- trainControl(method = "cv", number = 5)
tuned_rf <- suppressWarnings(train(
Usefulness_score ~ ., data = features_train,
method = "rf", trControl = train_control,
tuneLength = 5
))
print(tuned_rf)
# Predict using the tuned model
tuned_predictions <- predict(tuned_rf, features_validation)
tuned_rmse <- sqrt(mean((tuned_predictions - features_validation$Usefulness_score)^2))
print(paste("Tuned RMSE on validation set:", tuned_rmse))
# Section 4: Analyze Generated Dialogue
# Print the utterance text of Dialogue_ID 1111
dialogue_1111_data <- utterance_train %>% filter(Dialogue_ID == 1111)
cat("Dialogue text for Dialogue_ID 1111:\n")
print(dialogue_1111_data$Utterance_text)
# Predict using the tuned model
tuned_predictions <- predict(tuned_rf, features_validation)
tuned_rmse <- sqrt(mean((tuned_predictions - features_validation$Usefulness_score)^2))
print(paste("Tuned RMSE on validation set:", tuned_rmse))
# Predict usefulness score for Dialogue_ID 1111
dialogue_1111 <- filter(features_train, Dialogue_ID == 1111)
pred_1111 <- predict(tuned_rf, dialogue_1111)
print(paste("Predicted Usefulness Score for Dialogue_ID 1111:", pred_1111))
# Section 1: Feature Engineering and Visualization
# Checking and installing necessary libraries
necessary_packages <- c("dplyr", "ggplot2", "caret", "randomForest", "textclean", "tidyr", "purrr", "syuzhet")
for (package in necessary_packages) {
if (!requireNamespace(package, quietly = TRUE)) {
install.packages(package)
}
}
# Loading the libraries
library(dplyr)
library(ggplot2)
library(caret)
library(randomForest)
library(textclean)
library(tidyr)
library(purrr)
library(syuzhet)
# Loading the data
utterance_train <- read.csv("dialogue_utterance_train.csv")
usefulness_train <- read.csv("dialogue_usefulness_train.csv")
utterance_validation <- read.csv("dialogue_utterance_validation.csv")
usefulness_validation <- read.csv("dialogue_usefulness_validation.csv")
utterance_test <- read.csv("dialogue_utterance_test.csv")
usefulness_test <- read.csv("dialogue_usefulness_test.csv")
# Ensuring consistent column names
colnames(utterance_train)[1] <- "Dialogue_ID"
colnames(utterance_train)[3] <- "Interlocutor"
colnames(utterance_validation)[1] <- "Dialogue_ID"
colnames(utterance_validation)[3] <- "Interlocutor"
colnames(utterance_test)[1] <- "Dialogue_ID"
colnames(utterance_test)[3] <- "Interlocutor"
# Feature Engineering: Sentiment Analysis
compute_sentiment <- function(text) {
# Computing polarity using syuzhet
polarity <- get_sentiment(text, method = "syuzhet")
# Computing subjectivity as the difference between positive and negative sentiments
subjectivity <- get_nrc_sentiment(text)$positive - get_nrc_sentiment(text)$negative
return(data.frame(polarity = polarity, subjectivity = subjectivity))
}
# Applying sentiment analysis to the training data
utterance_train_sentiment <- utterance_train %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Applying sentiment analysis to the validation data
utterance_validation_sentiment <- utterance_validation %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Aggregating features for each dialogue
extract_features <- function(df, usefulness) {
df %>%
group_by(Dialogue_ID) %>%
summarise(
total_utterances = n(),
avg_utterance_length = mean(nchar(Utterance_text)),
student_interactions = sum(Interlocutor == "Student"),
chatbot_interactions = sum(Interlocutor == "Chatbot"),
avg_polarity = mean(polarity, na.rm = TRUE),
avg_subjectivity = mean(subjectivity, na.rm = TRUE),
max_polarity = max(polarity, na.rm = TRUE),
min_polarity = min(polarity, na.rm = TRUE),
polarity_range = max(polarity, na.rm = TRUE) - min(polarity, na.rm = TRUE)
) %>%
inner_join(usefulness, by = "Dialogue_ID")
}
# Extracting features for the training data
features_train <- extract_features(utterance_train_sentiment, usefulness_train)
# Extracting features for the validation data
features_validation <- extract_features(utterance_validation_sentiment, usefulness_validation)
# Creating Usefulness Group for Boxplot Visualization
features_train <- features_train %>%
mutate(Usefulness_group = case_when(
Usefulness_score %in% c(1, 2) ~ "Low Usefulness (Score 1-2)",
Usefulness_score %in% c(4, 5) ~ "High Usefulness (Score 4-5)"
))
# Boxplot visualization for Total Utterances and Average Polarity
# Total Utterances Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = total_utterances)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Total Utterances by Usefulness Group", x = "Usefulness Group", y = "Total Utterances") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Average Polarity Boxplot
ggplot(features_train %>% filter(Usefulness_group %in% c("Low Usefulness (Score 1-2)", "High Usefulness (Score 4-5)")), aes(x = Usefulness_group, y = avg_polarity)) +
geom_boxplot(aes(fill = Usefulness_group)) +
labs(title = "Average Polarity by Usefulness Group", x = "Usefulness Group", y = "Average Polarity") +
theme_minimal() +
scale_fill_manual(values = c("Low Usefulness (Score 1-2)" = "red", "High Usefulness (Score 4-5)" = "green"))
# Section 2: Build Initial Machine Learning Model
# Removing Usefulness_group before training
features_train <- features_train %>% select(-Usefulness_group)
# Training a Random Forest model
set.seed(42)
rf_model <- suppressWarnings(randomForest(Usefulness_score ~ ., data = features_train, importance = TRUE))
print(rf_model)
# Predicting on the validation set
predictions <- suppressWarnings(predict(rf_model, features_validation))
# Calculating RMSE (Root Mean Square Error) on the validation set
rmse <- sqrt(mean((predictions - features_validation$Usefulness_score)^2))
print(paste("RMSE on validation set:", rmse))
# Feature importance with colors and rounded values
importance_df <- as.data.frame(importance(rf_model))
# Sorting features by their importance
importance_df <- importance_df[order(importance_df$IncNodePurity, decreasing = TRUE),]
importance_df$Feature <- rownames(importance_df)
# Plotting feature importance
ggplot(importance_df, aes(x = reorder(Feature, IncNodePurity), y = round(IncNodePurity, 2), fill = IncNodePurity)) +
geom_bar(stat = "identity") +
coord_flip() +
labs(title = "Feature Importance in Random Forest Model", x = "Features", y = "IncNodePurity") +
scale_fill_gradient(low = "blue", high = "red") +
theme_minimal()
# Section 3: Improve the Model
# Tuning the Random Forest model using caret
train_control <- trainControl(method = "cv", number = 5)
# Performing cross-validation with 5 folds
tuned_rf <- suppressWarnings(train(
Usefulness_score ~ ., data = features_train,
method = "rf", trControl = train_control,
tuneLength = 5
))
print(tuned_rf)
# Predicting using the tuned model
tuned_predictions <- predict(tuned_rf, features_validation)
# Calculating RMSE for the tuned model on the validation set
tuned_rmse <- sqrt(mean((tuned_predictions - features_validation$Usefulness_score)^2))
print(paste("Tuned RMSE on validation set:", tuned_rmse))
# Section 4: Analyze Generated Dialogue
# Printing the utterance text of Dialogue_ID 1111
dialogue_1111_data <- utterance_train %>% filter(Dialogue_ID == 1111)
cat("Dialogue text for Dialogue_ID 1111:\n")
print(dialogue_1111_data$Utterance_text)
# Predicting using the tuned model
tuned_predictions <- predict(tuned_rf, features_validation)
tuned_rmse <- sqrt(mean((tuned_predictions - features_validation$Usefulness_score)^2))
print(paste("Tuned RMSE on validation set:", tuned_rmse))
# Predicting usefulness score for Dialogue_ID 1111
dialogue_1111 <- filter(features_train, Dialogue_ID == 1111)
pred_1111 <- predict(tuned_rf, dialogue_1111)
print(paste("Predicted Usefulness Score for Dialogue_ID 1111:", pred_1111))
# Section 5: Predict Test Set Usefulness
# Feature Engineering: Sentiment Analysis for Test Set
utterance_test_sentiment <- utterance_test %>%
mutate(sentiment = map(Utterance_text, compute_sentiment)) %>%
unnest_wider(sentiment)
# Aggregating features for each dialogue in the test set
features_test <- extract_features(utterance_test_sentiment, usefulness_test)
# Predicting on the test set using the tuned model
test_predictions <- predict(tuned_rf, features_test)
# Preparing the csv file with rounded usefulness scores
usefulness_test$Usefulness_score <- round(test_predictions, 2)
write.csv(usefulness_test, "Adhikary_34053387_dialogue_usefulness_test.csv", row.names = FALSE)
setwd("/Users/abhishekadhikary/Monash/FIT5147/DVP/AbhishekAdhikary_34053387_Code")