Skip to main content

Questions tagged [lstm]

A Long Short Term Memory (LSTM) is a neural network architecture that contains recurrent NN blocks that can remember a value for an arbitrary length of time.

0 votes
0 answers
34 views

I'm training an LSTM to predict a binary anomaly sequence from multi-dimensional, irregularly sampled input sequences. While CNNs perform adequately, I'm struggling to get good performance from my ...
klobaska soslaninou's user avatar
4 votes
1 answer
81 views

In an LSTM(regression), the output gate is defined as: $$o_t = \sigma\left(W_o x_t + U_o h_{t-1} + b_o \right),$$ where: $W_o \in \mathbb{R}^{m \times d}$ is the input weight matrix, $U_o \in \mathbb{...
Marie's user avatar
  • 135
3 votes
2 answers
125 views

I will use the answer here as an example: https://stats.stackexchange.com/a/370732/78063 It says "which means that you choose a number of time steps $N$, and unroll your network so that it ...
Baron Yugovich's user avatar
0 votes
0 answers
36 views

I am working on using an LSTM model to predict electricity spot prices. I understand how the LSTM cell works internally, including the role and dimensions of the gates and hidden states. What I’m ...
Marie's user avatar
  • 135
1 vote
1 answer
59 views

I have an LSTM model to predict a variable by considering multiple variables. (Say the target variable is river discharge and the predictors are rainfall, temperature, evapotranspiration etc.) There ...
DWijesena's user avatar
4 votes
1 answer
217 views

In standard machine learning settings with cross-sectional data, it's common to assume that data points are independently and identically distributed (i.i.d.) from some fixed data-generating process (...
spie227's user avatar
  • 242
0 votes
0 answers
17 views

I'm working on a spatiotemporal prediction problem where I want to forecast a scalar value per spatial node over time. My data spans multiple spatial grid locations with daily observations. Data Setup ...
Rai's user avatar
  • 43
6 votes
0 answers
168 views

I have collection of TEC data.My data sample for example the day1,day2,day3,day4. Case1: I have the following task to do: Training by the consecutive 3 days to predict the each 4th day. Each day data ...
S. M.'s user avatar
  • 33
0 votes
0 answers
33 views

I have read somewhere (sorry, couldn't find the reference anymore), that $C_t$ (check figure below) represents the "long term" in LSMT. The reason was because "The information goes ...
Murilo's user avatar
  • 179
0 votes
0 answers
132 views

I am working on a time series prediction problem using an LSTM model. My dataset consists of 27 different items, each with unique IDs, and roughly the same number of samples per item. There are around ...
Rai's user avatar
  • 43
1 vote
0 answers
60 views

I have some time series data with multiple features. The output is shifted (I mean the times at which I have the output values are shifted from the corresponding inputs and also irregularly). I have ...
Ash Ketchump's user avatar
0 votes
0 answers
43 views

At the period $T$, I want to forecast the target variables $V_{T+1}, ..., V_{T+60}$. My independent variables are $X$ and $f_1, ..., f_{60}$. $f_i$ is actually a forecast of variable $f$ from the $i$ ...
Junior MIP's user avatar
2 votes
1 answer
72 views

I am working on a project where the goal is to predict whether students in an online course will drop out of the course. The course is divided into 20 course weeks. For each week, I have certain kinds ...
Computeraar's user avatar
0 votes
0 answers
9 views

I'm trying to train an LSTM Variational Autoencoder, but I cannot figure out why the model is not making any progress, the loss gets stuck immediately. Here is my code and training loop. The sequences ...
iTz_Lucky iTz_Lucky's user avatar
0 votes
0 answers
78 views

I am working on a project where I generate synthetic data which is the sum of 5 random sine functions sampled every 0.01s (and I add mean reverting brownian motion noise to the data). ...
Arnav Tapadia's user avatar

15 30 50 per page
1
2 3 4 5
54