File size: 794 Bytes
b9c2166 ba32581 b9c2166 ba32581 b9c2166 ba32581 b9c2166 ba32581 b9c2166 ba32581 b9c2166 ba32581 b9c2166 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
---
pipeline_tag: tabular-regression
tags:
- stock-prediction
- deep-learning
- finance
- stock-market
---
# ๐ Stock Prediction Model
This is a Deep Learning based **Stock Price Prediction** model, trained to forecast future stock prices based on historical data trends.
It uses LSTM (Long Short-Term Memory) networks for time-series analysis.
---
## ๐ How to Use
You can use this model directly with the Hugging Face Inference API:
```python
import requests
API_URL = "https://api-inference.huggingface.co/models/SelvaprakashV/stock-prediction-model"
headers = {"Authorization": f"Bearer YOUR_HUGGINGFACE_API_TOKEN"}
data = {
"inputs": "POWERGRID.NS" # Replace with your stock symbol
}
response = requests.post(API_URL, headers=headers, json=data)
print(response.json())
|