Skip to content

Releases: Debasish-Mahapatra/nwpeval

v1.6.0 - Modular Metrics API

05 Dec 20:34

Choose a tag to compare

What's New

  • 65 standalone metric functions: from nwpeval import rmse, fss, pod
  • NWP_Stats class deprecated (will be removed in future version)
  • Bug fixes: FSS formula, MCC overflow
  • Test suite added in tests/

New API

from nwpeval import rmse, mae, pod, fss
result = rmse(obs, model)

Full Changelog

v1.5.0...v1.6.0

1.5.0

03 Apr 20:07

Choose a tag to compare

Changelog

Version 1.5.0

New Features

  • Added the help() function to provide a convenient way to explore the available methods in the NWP_Stats class and view their descriptions and usage instructions. Users can now easily access the documentation for specific methods or view the entire list of available methods. This enhancement addresses the issue #1 raised in the GitHub repository.

Example usage:

from nwpeval import NWP_Stats

# Display help for a specific method
help(NWP_Stats.compute_fss)

# Display help for all available methods
help(NWP_Stats)

Bug Fixes

  • Fixed minor bugs and improved code stability.

Other Changes

  • The package has been moved from the 3-Alpha stage to the 4-Beta stage in development, indicating that it has undergone further testing and refinement.

Please note that this is a beta release (version 1.5.0b2), and while it includes significant enhancements and bug fixes, it may still have some known limitations or issues. We encourage users to provide feedback and report any bugs they encounter.

We appreciate your interest in the NWPeval package and thank you for your support!