Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -13,15 +13,15 @@ This repository hosts a trained **Support Vector Regression (SVR)** model and it
|
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
- **Algorithm:** Support Vector Regression (SVR) with RBF Kernel
|
| 16 |
-
- **Features (Input Sequence Length):**
|
| 17 |
- **Target:** Single-step prediction (the price of day $T+1$)
|
| 18 |
- **Training Period:** 2020-11-24 to 2025-11-23
|
| 19 |
|
| 20 |
## Inference
|
| 21 |
-
To use this model, you must provide a sequence of the last **
|
| 22 |
|
| 23 |
1. Load the `svr_model.joblib` and `minmax_scaler.joblib`.
|
| 24 |
-
2. Scale your
|
| 25 |
3. Run the prediction.
|
| 26 |
4. Inverse transform the prediction using the loaded `MinMaxScaler` to get the final dollar value.
|
| 27 |
|
|
|
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
- **Algorithm:** Support Vector Regression (SVR) with RBF Kernel
|
| 16 |
+
- **Features (Input Sequence Length):** 100 days
|
| 17 |
- **Target:** Single-step prediction (the price of day $T+1$)
|
| 18 |
- **Training Period:** 2020-11-24 to 2025-11-23
|
| 19 |
|
| 20 |
## Inference
|
| 21 |
+
To use this model, you must provide a sequence of the last **100** scaled closing prices.
|
| 22 |
|
| 23 |
1. Load the `svr_model.joblib` and `minmax_scaler.joblib`.
|
| 24 |
+
2. Scale your 100-day input sequence using the loaded `MinMaxScaler`.
|
| 25 |
3. Run the prediction.
|
| 26 |
4. Inverse transform the prediction using the loaded `MinMaxScaler` to get the final dollar value.
|
| 27 |
|