The Nash–Sutcliffe Efficiency (NSE) is a widely used metric for evaluating hydrological models, particularly for comparing observed and simulated streamflows. It measures how well a model's predictions match observed data.

NSE Formula

The NSE is given by:

$$ N S E=1-\frac{\sum_{i=1}^n\left(Q_{obs, i}-Q_{sim, i}\right)^2}{\sum_{i=1}^n\left(Q_{obs, i}-\bar{Q}_{obs}\right)^2} $$

where:

NSE Interpretation

🧠Python Implementation: NSE Calculation

https://gist.github.com/viadean/ffc82b0055092c1445a7a0bb5f3d0ee0

Why Use NSE?