Become a member
Sign in
Yan Wu
Yan Wu

Yan Wu

11 Following
10 Followers
  • Profile
  • Highlights

Highlighted by Yan Wu

See more

From A simple deep learning model for stock price prediction using TensorFlow by Sebastian Heinz

Remark: Caution must be undertaken regarding what part of the data is scaled and when. A common mistake is to scale the whole dataset before training and test split are being applied. Why is this a mistake? Because scaling invokes the calculation of statistics e.g. the min/max of a …

From A simple deep learning model for stock price prediction using TensorFlow by Sebastian Heinz

…urons such as tanh or sigmoid are defined on the [-1, 1] or [0, 1] interval respectively. Nowadays, rectified linear unit (ReLU) activations are commonly used activations which are unbounded on the axis of possible activation values. Howeve…

From A simple deep learning model for stock price prediction using TensorFlow by Sebastian Heinz

…validation, such as rolling forecasts with and without refitting or more elaborate concepts such as time series bootstrap resampling. The latter involves repeated samples from the remainder of the seasonal decomposition of the time …