I've started working on anomaly detection in Python. My dataset is a time series one. The data is being collected by some sensors which record and collect data on semiconductor-making machines.
My dataset looks like this:
ContextID Time_ms…
I am trying to predict Forex time series. The nature of the market is that 80% of the time the price can not be predicted, but in 20% of the time it can be. For example, if the price drops down very deep, there is 99% probability that there will be…
When using CNNs for non-image (times series) data prediction, what are some constraints or things to look out for as compared to image data?
To be more precise, I notice there are different types of layers in a CNN model, as described below, which…
I am reading the paper Hierarchical Attention-Based Recurrent Highway Networks for Time Series Prediction (2018) by Yunzhe Tao et al.
In this paper, they use several times the expression "semantic levels". Some examples:
HRHN can adaptively select…
Can HMMs be used to model any time series data? Or does the data have to be that of a Markov process?
In HTK documentation, I see that the first few lines state that it can model any time series
HTK is a toolkit for building Hidden Markov Models…
I have a question regarding the time delay in reinforcement learning (RL).
In the RL, one has state, reward and action. It is usually assumed that (as far as I understand it) when the action is executed on the system, the state changes immediately…
There is plenty of literature describing LSTMs in a lot of detail and how to use them for multi-variate or uni-variate forecasting problems. What I couldn't find though, is any papers or discussions describing time series forecasting where we have…
There are different kinds of machine learning algorithms, both univariate and multivariate, that are used for time series forecasting: for example ARIMA, VAR or AR.
Why is it harder (compared to classical models like ARIMA) to achieve good results…
When working with time-series data, is it wrong to use daily prices as features and the price after 3 days as the target?
Or should I use the next-day price as a target, and, after training, predict 3 times, each time for one more day ahead (using…
I'm playing around with TCN's lately and I don't understand one thing. How is the receptive field different from the input size?
I think that the receptive field is the time window that TCN considers during the prediction, so I guess the input size…
I understand that seq2seq models are perfectly suitable when the input and/or the output have variable lengths. However, if we know exactly the input/output sequence lengths of the neural network. Is this the best approach?
I have an input vector $X$, which contains a series of measurements within a period, e.g. 100 measurements in 1 sec. The goal is to predict an event, let's say, moving forward, backward or static.
I don't want to predict the output just by looking…
Can a CNN (or other non-sequential deep learning models) outperform LSTM (or other sequential models) in time series data?
I know this question is not very specific, but I experienced this when predicting daily store sales and I am curious as to…
I'm not sure what this type of data is called, so I will give an example of the type of data I am working with:
A city records its inflow and outflow of different types of vehicles every hour. More specifically, it records the engine size. The…
I am trying to train my model using LTSM layer in Keras (python). I have some problems regarding the data representation and feeding it into the model.
My data is 184 XY coodinates encoded as a numpy array with two dimensions: one corresponding to…