Skip to main content

TorchHydro

PyPI version Python License Docs

A PyTorch-based deep learning framework for hydrological modeling. Supports Normal, Transfer Learning, Multi-Task Learning, and Federated Learning modes.

Documentation: https://OuyangWenyu.github.io/torchhydro

Installation

Python 3.10+ required.

pip install torchhydro

or with uv (faster):

uv pip install torchhydro

See the Installation Guide for developer setup.

Quick Start

1. Configure data path

Create hydro_setting.yml in your home directory (~/ or %USERPROFILE%):

storage:
  default_source: local
  local:
    root: 'D:/data/hydrodatasets'  # your data directory
  cache: 'D:/data/hydrodatasets/cache'

Standard dataset paths (e.g., CAMELS-US) are resolved automatically from this root by the unified data resolver.

2. Run a model

from hydrodataset.hydro_dataset import StandardVariable
from torchhydro.configs.config import cmd, default_config_file, update_cfg
from torchhydro.trainers.trainer import train_and_evaluate

# Build config for LSTM on CAMELS-US
args = cmd(
    source_cfgs={"dataset_id": "camels_us"},
    model_name="CpuLSTM",
    model_hyperparam={"n_input_features": 23, "n_output_features": 1, "n_hidden_states": 256},
    gage_id=["01013500", "01022500", "01030500"],
    train_period=["2000-10-01", "2001-10-01"],
    valid_period=["2001-10-01", "2002-10-01"],
    test_period=["2002-10-01", "2003-10-01"],
    var_t=[
        StandardVariable.PRECIPITATION,
        StandardVariable.SOLAR_RADIATION,
        StandardVariable.TEMPERATURE_MAX,
    ],
    var_out=[StandardVariable.STREAMFLOW],
    dataset="StreamflowDataset",
    sampler="KuaiSampler",
    scaler="DapengScaler",
)

config_data = default_config_file()
update_cfg(config_data, args)
train_and_evaluate(config_data)

See examples/ for runnable scripts:

  • examples/lstm_camels_example.py — Standard LSTM on CAMELS-US
  • examples/dpl_xaj_example.py — Differentiable Xinanjiang (XAJ) model

Features

Models

Category Models
LSTM variants SimpleLSTM, CudaLSTM, CNNLSTM, MCLSTM, SPPLSTM, BALSTM, MTSLSTM
Seq2Seq / Encoder-Decoder GeneralSeq2Seq, Transformer, DataFusionModel, SeqForecast
Differentiable physical models DPL-XAJ, DPL-HBV, DPL-GR4J, DPL-MC-Reservoir
Graph neural networks GCN, ResGCN, GCNII, ResGAT, GCGRU, GCLSTM, STGCN
Mixture of Experts DenseMoE, SparseMoE, SwitchMoE, HydrologyTopKMoE, GlobalTopKMoE
Generative / spectral Diffusion, FNO (Fourier Neural Operator)
Specialized WDNE (3D flood), CoupledLSTM, RegulLSTM

Datasets

Standard datasets resolved via hydrodataset and hydrodatasource:

dataset_id Description
camels_us CAMELS-US (671 US basins)
camelsh CAMELS-Hourly
caravan / grdc_caravan Caravan / GRDC-Caravan collections
camels_aus / camels_br / camels_cl / camels_gb / camels_col CAMELS regional datasets

Custom data sources: selfmadehydrodataset, selfmadeforecastdataset, longtermdataset, floodeventdatasource, stationhydrodataset, tghydrodatasource.

Training modes

  • Standard supervised learning — single basin or regional training
  • Transfer learning — cross-basin model adaptation
  • Multi-task learning — shared backbone, task-specific heads
  • Federated learning — decentralized basin-level training

Key capabilities

  • Unified data resolver — all dataset paths from one hydro_setting.yml config
  • Monthly and sub-daily (hourly) time units
  • Cloud-Zarr lazy loading for joint training on remote data
  • Lightning Fabric integration for debugging and distributed training
  • SHAP-based model interpretability and loss landscape visualization
  • Advanced dropout strategies and data augmentation

Guides & Documentation

Examples & Results

Advanced Topics

API Reference

Models · Datasets · Trainers · Configs · Explainers

Architecture

configs/          config.py, model_config.py, data_resolver.py (unified data layer)
  │ drives
  ├── datasets/   data_sets.py, data_sources.py, sampler.py, scalers.py
  ├── models/     20+ architectures registered in model_dict_function.py
  ├── trainers/   deep_hydro.py (orchestrator), trainer.py, fabric_wrapper.py
  ├── explainers/ shap.py, loss_landscape/, uncertainty_analysis.py
  └── utils/      dist_utils.py (MPI distributed computing)

Why TorchHydro?

  • Decoupled data layer — a unified resolver supports 10+ datasets, custom sources, and cloud storage; data tooling is usable even without a deep-learning model
  • Flexible learning paradigms — transfer, multi-task, and federated learning are first-class, not afterthoughts
  • Deep configuration — fine-grained control over data traversal, normalization, batch sampling, and advanced dropout
  • Extensible — configuration is externalized so new data sources and models plug in without modifying core code

Contributing

See the Contributing Guide for development setup, code standards, and pull request workflow.

License

BSD License. See LICENSE.

Acknowledgments

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torchhydro-0.2.0.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

torchhydro-0.2.0-py3-none-any.whl (411.9 kB view details)

Uploaded Python 3

File details

Details for the file torchhydro-0.2.0.tar.gz.

File metadata

  • Download URL: torchhydro-0.2.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for torchhydro-0.2.0.tar.gz
Algorithm Hash digest
SHA256 7f1ce496345818efe26e362b53358a931ead57ec10174b805ea61f53b508835c
MD5 68cbe6638ee72e8fa6742ea1b0f6a301
BLAKE2b-256 a45c2bb23240dbd8959f950c633a148ed4d1068d842c127246342c473f09345d

See more details on using hashes here.

Provenance

The following attestation bundles were made for torchhydro-0.2.0.tar.gz:

Publisher: pypi.yml on OuyangWenyu/torchhydro

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file torchhydro-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: torchhydro-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 411.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for torchhydro-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2d1862ff83b86e36464dcf386ec76a86e264e0638b93a96ef96ae6d351d5420d
MD5 a9073c79983286eea32200d0605e0a79
BLAKE2b-256 ff6bdb7fabf5542400a2919443b7f051d4ff079d75908acd7aea111ef0e64689

See more details on using hashes here.

Provenance

The following attestation bundles were made for torchhydro-0.2.0-py3-none-any.whl:

Publisher: pypi.yml on OuyangWenyu/torchhydro

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.0

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page