Skip to content

Commit

Permalink
Export Wasserstein distances (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Oct 30, 2022
1 parent 6fbb7d3 commit ad89fba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CalibrationErrors"
uuid = "33913031-fe46-5864-950f-100836f47845"
authors = ["David Widmann <david.widmann@it.uu.se>"]
version = "0.6.1"
version = "0.6.2"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
3 changes: 3 additions & 0 deletions src/CalibrationErrors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ export ECE, SKCE, UCME
# binning algorithms
export UniformBinning, MedianVarianceBinning

# Wasserstein distances
export Wasserstein, SqWasserstein, MixtureWasserstein, SqMixtureWasserstein

include("distances/types.jl")
include("distances/wasserstein.jl")

Expand Down
2 changes: 0 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ using Statistics
using Test

using CalibrationErrors: unsafe_skce_eval, unsafe_ucme_eval
using CalibrationErrors:
Wasserstein, SqWasserstein, MixtureWasserstein, SqMixtureWasserstein

Random.seed!(1234)

Expand Down

2 comments on commit ad89fba

@devmotion
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/71319

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.2 -m "<description of version>" ad89fba22cc1c0604d142a11b54cde3ac6b6c578
git push origin v0.6.2

Please sign in to comment.