Instructions to use jsebdev/apple_stock_predictor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use jsebdev/apple_stock_predictor with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://jsebdev/apple_stock_predictor") - Notebooks
- Google Colab
- Kaggle
Update readme
Browse files
README.md
CHANGED
|
@@ -7,11 +7,11 @@ tags:
|
|
| 7 |
|
| 8 |
## Model description
|
| 9 |
|
| 10 |
-
This is
|
| 11 |
|
| 12 |
## Intended uses & limitations
|
| 13 |
|
| 14 |
-
This models is
|
| 15 |
|
| 16 |
- https://huggingface.co/spaces/jsebdev/stock_predictor
|
| 17 |
|
|
|
|
| 7 |
|
| 8 |
## Model description
|
| 9 |
|
| 10 |
+
This is model predicts Apple stock prices. The model takes as input the last 500 daily candles of Apple stock price data and outputs the predicted candle for the next day. The input candles must be in chronological order, representing daily data for each candle, and the predicted candle will also be in daily format.
|
| 11 |
|
| 12 |
## Intended uses & limitations
|
| 13 |
|
| 14 |
+
This models is intended to be used as a learning project. Please don't use it as a financial tool. The only place where it should be running is the following space:
|
| 15 |
|
| 16 |
- https://huggingface.co/spaces/jsebdev/stock_predictor
|
| 17 |
|