yusyel commited on
Commit
aadb6c2
1 Parent(s): 1e9b923
Files changed (1) hide show
  1. README.md +30 -1
README.md CHANGED
@@ -5,8 +5,37 @@ tags:
5
  ---
6
 
7
  ## Model description
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- More information needed
10
 
11
  ## Intended uses & limitations
12
 
 
5
  ---
6
 
7
  ## Model description
8
+ Demonstrates how to do timeseries forecasting using a [LSTM model.](https://keras.io/api/layers/recurrent_layers/lstm/)
9
+
10
+
11
+ ## Climate Data Time-Series
12
+
13
+ We will be using Jena Climate dataset recorded by the Max Planck Institute for Biogeochemistry. The dataset consists of 14 features such as temperature, pressure, humidity etc, recorded once per 10 minutes.
14
+
15
+ Location: Weather Station, [Max Planck Institute for Biogeochemistry](https://www.bgc-jena.mpg.de/wetter/) in Jena, Germany.
16
+
17
+ Time-frame Considered: Jan 10, 2009 - December 31, 2016
18
+
19
+ The table below shows the column names, their value formats, and their description.
20
+
21
+ | Index | Features | Format | Description | Selected Features |
22
+ |-------|-----------------|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
23
+ | 1 | Date Time | 01.01.2009 00:10:00 | Date-time reference | |
24
+ | 2 | p (mbar) | 996.52 | The pascal SI derived unit of pressure used to quantify internal pressure. Meteorological reports typically state atmospheric pressure in millibars. | + |
25
+ | 3 | T (degC) | -8.02 | Temperature in Celsius | + |
26
+ | 4 | Tpot (K) | 265.4 | Temperature in Kelvin | - |
27
+ | 5 | Tdew (degC) | -8.9 | Temperature in Celsius relative to humidity. Dew Point is a measure of the absolute amount of water in the air, the DP is the temperature at which the air cannot hold all the moisture in it and water condenses. | - |
28
+ | 6 | rh (%) | 93.3 | Relative Humidity is a measure of how saturated the air is with water vapor, the %RH determines the amount of water contained within collection objects. | - |
29
+ | 7 | VPmax (mbar) | 3.33 | Saturation vapor pressure | + |
30
+ | 8 | VPact (mbar) | 3.11 | Vapor pressure | - |
31
+ | 9 | VPdef (mbar) | 0.22 | Vapor pressure deficit | + |
32
+ | 10 | sh (g/kg) | 1.94 | Specific humidity | + |
33
+ | 11 | H2OC (mmol/mol) | 3.12 | Water vapor concentration | - |
34
+ | 12 | rho (g/m ** 3) | 1307.75 | Airtight | + |
35
+ | 13 | wv (m/s) | 1.03 | Wind Speed | + |
36
+ | 14 | max. wv (m/s) | 1.75 | Maximum wind speed | - |
37
+ | 15 | wd (deg) | 152.3 | Wind direction in degrees | - |
38
 
 
39
 
40
  ## Intended uses & limitations
41