Views
No views yet
1from huggingface_hub import hf_hub_download
2import tensorflow as tf
3
4# Download a specific model
5model_path = hf_hub_download(
6 repo_id="Rohithkoripelli/indian-bank-stock-models",
7 filename="HDFCBANK/best_model.keras"
8)
9
10# Load the model
11model = tf.keras.models.load_model(model_path)