Skip to content

Commit

Permalink
fix ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangyi15 committed Oct 25, 2024
1 parent 4e1121f commit e3fcdd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tf_pwa/adaptive_bins.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def single_split_bound(data, n=2, base_bound=None):
>>> data = np.array([1.0, 2.0, 1.4, 3.1])
>>> bound = AdaptiveBound.single_split_bound(data)
>>> [(float(i[0]+1e-6), float(i[1]+1e-6)) for i in bound]
[(1.0, 1.7...), (1.7..., 3.1...)]
[(1.0..., 1.7...), (1.7..., 3.1...)]
"""
if base_bound is None:
Expand Down

0 comments on commit e3fcdd3

Please sign in to comment.