Fill readme
Browse files
README.md
CHANGED
@@ -1,21 +1,23 @@
|
|
1 |
---
|
2 |
library_name: keras
|
3 |
tags:
|
4 |
-
- lstm
|
5 |
-
- stock prices
|
6 |
---
|
7 |
|
8 |
## Model description
|
9 |
|
10 |
-
|
11 |
|
12 |
## Intended uses & limitations
|
13 |
|
14 |
-
|
|
|
|
|
15 |
|
16 |
## Training and evaluation data
|
17 |
|
18 |
-
|
19 |
|
20 |
## Training procedure
|
21 |
|
@@ -23,31 +25,30 @@ More information needed
|
|
23 |
|
24 |
The following hyperparameters were used during training:
|
25 |
|
26 |
-
| Hyperparameters
|
27 |
-
|
|
28 |
-
| name
|
29 |
-
| weight_decay
|
30 |
-
| clipnorm
|
31 |
-
| global_clipnorm
|
32 |
-
| clipvalue
|
33 |
-
| use_ema
|
34 |
-
| ema_momentum
|
35 |
-
| ema_overwrite_frequency | None
|
36 |
-
| jit_compile
|
37 |
-
| is_legacy_optimizer
|
38 |
-
| learning_rate
|
39 |
-
| beta_1
|
40 |
-
| beta_2
|
41 |
-
| epsilon
|
42 |
-
| amsgrad
|
43 |
-
| training_precision
|
44 |
-
|
45 |
-
|
46 |
-
## Model Plot
|
47 |
|
48 |
<details>
|
49 |
<summary>View Model Plot</summary>
|
50 |
|
51 |

|
52 |
|
53 |
-
</details>
|
|
|
1 |
---
|
2 |
library_name: keras
|
3 |
tags:
|
4 |
+
- lstm
|
5 |
+
- stock prices
|
6 |
---
|
7 |
|
8 |
## Model description
|
9 |
|
10 |
+
This is a model to predict Apple stock prices.
|
11 |
|
12 |
## Intended uses & limitations
|
13 |
|
14 |
+
This models is intented to be used in the following project:
|
15 |
+
|
16 |
+
- https://huggingface.co/spaces/jsebdev/stock_predictor
|
17 |
|
18 |
## Training and evaluation data
|
19 |
|
20 |
+
The training and evaluation data is the obtained using the pandas_datareader from the yahoo finance data between 2013-01-01 and 2023-04-05. The data was split into a 80:20 ratio for training and evaluation, respectively.
|
21 |
|
22 |
## Training procedure
|
23 |
|
|
|
25 |
|
26 |
The following hyperparameters were used during training:
|
27 |
|
28 |
+
| Hyperparameters | Value |
|
29 |
+
| :---------------------- | :-------------------- |
|
30 |
+
| name | Adam |
|
31 |
+
| weight_decay | None |
|
32 |
+
| clipnorm | None |
|
33 |
+
| global_clipnorm | None |
|
34 |
+
| clipvalue | None |
|
35 |
+
| use_ema | False |
|
36 |
+
| ema_momentum | 0.99 |
|
37 |
+
| ema_overwrite_frequency | None |
|
38 |
+
| jit_compile | False |
|
39 |
+
| is_legacy_optimizer | False |
|
40 |
+
| learning_rate | 0.0010000000474974513 |
|
41 |
+
| beta_1 | 0.9 |
|
42 |
+
| beta_2 | 0.999 |
|
43 |
+
| epsilon | 1e-07 |
|
44 |
+
| amsgrad | False |
|
45 |
+
| training_precision | float32 |
|
46 |
+
|
47 |
+
## Model Plot
|
|
|
48 |
|
49 |
<details>
|
50 |
<summary>View Model Plot</summary>
|
51 |
|
52 |

|
53 |
|
54 |
+
</details>
|