-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLSTM.Rmd
308 lines (189 loc) · 7.82 KB
/
LSTM.Rmd
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
---
title: "LSTM 2"
author: "Omair Shafi Ahmed"
date: "11/4/2017"
output: pdf_document
---
```{r}
library('ggplot2')
library('tidyverse')
library('plyr')
library('dplyr')
library('caret')
library('keras')
library('abind')
library('data.table')
```
```{r}
# constants
data_dim <- 16
timesteps <- 8
num_classes <- 10
# define and compile model
# expected input data shape: (batch_size, timesteps, data_dim)
model <- keras_model_sequential()
model %>%
layer_lstm(units = 32, return_sequences = TRUE, input_shape = c(timesteps, data_dim)) %>%
layer_lstm(units = 32, return_sequences = TRUE) %>%
layer_lstm(units = 32) %>% # return a single vector dimension 32
layer_dense(units = 10, activation = 'softmax') %>%
compile(
loss = 'categorical_crossentropy',
optimizer = 'rmsprop',
metrics = c('accuracy')
)
# generate dummy training data
x_train <- array(runif(1000 * timesteps * data_dim), dim = c(1000, timesteps, data_dim))
y_train <- matrix(runif(1000 * num_classes), nrow = 1000, ncol = num_classes)
# generate dummy validation data
x_val <-array(runif(100 * timesteps * data_dim), dim = c(100, timesteps, data_dim))
y_val <- matrix(runif(100 * num_classes), nrow = 100, ncol = num_classes)
# train
model %>% fit(
x_train, y_train, batch_size = 64, epochs = 5, validation_data = list(x_val, y_val)
)
```
```{r}
prices <- read_csv('/Users/omairs/Documents/Masters/DS 5110/HW2/data/nyse/prices-split-adjusted.csv')
#abind(rbind(temp[['low']], temp[['high']]), rbind(temp[['low']], temp[['high']]), along=3)
#Required 501*1762*4
temp <- matrix(ncol = 251)
temp_2 <- array(dim=c(502,1762,1))
counter <- 1
for (ohlc in c('open', 'high', 'low', 'close')){
temp <- matrix(ncol = 501)
for (i in 1:length(unique(prices$symbol))){
#select the stock + ohlc from the main df
temp_1 <- prices %>% filter(`symbol` == unique(prices$symbol)[i]) %>%
select(ohlc)
#formatting
temp_1 <- t(as.matrix(temp_1))
#attaching to the main df
temp <- rbind.fill.matrix(temp, temp_1)
}
if (counter == 1){
#create new matrix of the same dim if the loop runs for the first time
temp2 <- matrix(nrow = dim(temp)[1], ncol = dim(temp)[2])
counter <- 0
}
temp_2 <- abind(temp_2, temp, along = 3)
}
temp_2 <- temp_2[,,2:5]
```
```{r}
#pre_process <- prices %>% filter(`symbol` == "AAPL") %>% as.data.frame %>% preProcess(prices[,3:7], method=c("scale"))
#transformed <- predict(pre_process, prices[,3:7])
#summary(transformed)
#data_dim <- ncol(transformed)
#timesteps <- nrow(transformed)
model <- keras_model_sequential()
model %>%
layer_lstm(units = 32, return_sequences = TRUE, input_shape = c(dim(temp_2)[2], dim(temp_2)[3])) %>%
layer_lstm(units = 32, return_sequences = TRUE) %>%
layer_lstm(units = 32) %>% # return a single vector dimension 32
layer_dense(units = 10, activation = 'softmax') %>%
compile(
loss = 'categorical_crossentropy',
optimizer = 'rmsprop',
metrics = c('accuracy')
)
x_train <- temp_2
y_train <- matrix(runif(502 * 10), nrow = 502, ncol = 10)
# generate dummy validation data
x_val <- temp_2
y_val <- matrix(runif(502 * 10), nrow = 502, ncol = 10)
# train
model %>% fit(
x_train, y_train, batch_size = 64, epochs = 5, validation_data = list(x_val, y_val)
)
```
#RUN1
##Read data and filter appropraite data
```{r}
ohlc = "close"
lookback = 3
prices <- read_csv('/Users/omairs/Documents/Masters/DS 5110/HW2/data/nyse/prices-split-adjusted.csv')
aapl_close <- prices %>% filter(`symbol` == "AAPL") %>% select(`close`)
aapl_open <- prices %>% filter(`symbol` == "AAPL") %>% select(`open`)
```
## Shift and wrangle as needed
```{r}
create_horizontal_timeseries <- function(data_frame, col_name, time_steps){
test <- list()
for (i in 1:time_steps) {
shifted <- shift(data_frame[,col_name], (i), fill=NA)
test <- c(test, shifted)
#data_frame3 <- cbind(data_frame2, as.data.frame(shifted))
data_frame[paste(col_name, i)] <- test[[i]]
}
data_frame <- na.omit(data_frame)
data_frame <- apply(data_frame, 2, function(x)(x-min(x))/(max(x)-min(x)))
data_frame
}
stock_vector_close <- create_horizontal_timeseries(aapl_close, "close", 3)
stock_vector_open <- create_horizontal_timeseries(aapl_open, "open", 3)
```
Split into Train and Test
```{r}
create_cross_validation <- function(stock_vector){
train_y <- stock_vector[1:as.numeric(0.67*nrow(stock_vector)),ncol(stock_vector)]
test_y <- stock_vector[(0.67*nrow(stock_vector)):nrow(stock_vector),
ncol(stock_vector)]
train_x <- stock_vector[1:as.numeric(0.67*nrow(stock_vector)),1:(ncol(stock_vector)-1)]
test_x <- stock_vector[as.numeric(0.67*nrow(stock_vector)):nrow(stock_vector),
1:(ncol(stock_vector)-1)]
#abind(aapl_train, matrix(nrow = nrow(aapl_train), ncol = ncol(aapl_train)), along = 3)
list(train_y, test_y, train_x, test_x)
}
create_cross_validation_output_close <- create_cross_validation(stock_vector_close)
create_cross_validation_output_open <- create_cross_validation(stock_vector_open)
train_y <- create_cross_validation_output_close[[1]]
test_y <- create_cross_validation_output_close[[2]]
close_train_x <- create_cross_validation_output_close[[3]]
close_test_x <- create_cross_validation_output_close[[4]]
open_train_x <- create_cross_validation_output_open[[3]]
open_test_x <- create_cross_validation_output_open[[4]]
train_x <- abind(open_train_x, close_train_x, along=3)
test_x <- abind(open_test_x, close_test_x, along=3)
```
Create an LSTM
```{r}
model <- keras_model_sequential()
model %>% layer_lstm (units = 8, return_sequences = TRUE, input_shape = c(3, 2)) %>%
layer_flatten %>%
layer_dense(units = 1, activation = 'sigmoid') %>%
compile(
loss = 'mean_squared_error',
optimizer = 'adam',
metrics = c('accuracy')
)
model %>% fit(train_x, train_y, batch_size = 10, epochs = 100, validation_data = list(test_x, test_y)
)
```
#Predict and Undo Scaling
```{r}
scaled_predictions <- as.data.frame(predict(model, test_x))
scaled_predictions$epoch <- as.numeric(row.names(as.data.frame(predict(model, test_x))))
actual_values <- as.data.frame(test_y)
actual_values$epoch <- as.numeric(row.names(actual_values))
scaled_predictions %>% ggplot() + geom_line(aes(y=`V1`, x=`epoch`), color='blue') +
geom_line(aes(y=`test_y`, x=`epoch`), color='red')
predictions <- as.data.frame(apply(as.data.frame(predict(model, test_x)), MARGIN = 2, FUN = function(x)
((x * (max(aapl_close) - min(aapl_close))) + min(aapl_close))))
predictions$actual <- apply(as.data.frame(test_y), MARGIN = 2, FUN = function(x)
((x * (max(aapl_close) - min(aapl_close))) + min(aapl_close)))
predictions$epoch <- as.numeric(row.names(predictions))
names(predictions)[names(predictions) == 'V1'] <- "predicted"
predictions %>% ggplot() + geom_line(aes(y=`predicted`, x=`epoch`), color='blue') +
geom_line(aes(y=`actual`, x=`epoch`), color='red') +
ylab('Price')
```
##Calculating Residuals
```{r}
predictions$residuals <- as.numeric(predictions$actual - predictions$predicted)
rmse <- sqrt(mean(predictions$residuals^2))
r_squared <- cor(predictions$actual, predictions$predicted) ^ 2
predictions$accuracy <- as.numeric(predictions$residual/predictions$actual*100)
head(predictions)
cor(predictions$actual, predictions$predicted) ^ 2
```