Instructions to use nctstuti/ds_btl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- stable-baselines3
How to use nctstuti/ds_btl with stable-baselines3:
from huggingface_sb3 import load_from_hub checkpoint = load_from_hub( repo_id="nctstuti/ds_btl", filename="{MODEL FILENAME}.zip", ) - Notebooks
- Google Colab
- Kaggle
RecurrentPPO Model for Water Quality Index Prediction
This model uses RecurrentPPO with an LSTM policy to predict Water Quality Index (WQI) values.
Model Description
- Model Type: RecurrentPPO
- Policy: MlpLstmPolicy
- Training Steps: 10000
- Average MAPE: 22.08%
Usage
from sb3_contrib import RecurrentPPO
# Load the model
model = RecurrentPPO.load("nctstuti/ds_btl")
# Make predictions
obs = your_observation # Shape should match your feature space
action, _states = model.predict(obs)
- Downloads last month
- 1