Skip to content

Commit

Permalink
yet another try
Browse files Browse the repository at this point in the history
  • Loading branch information
urigott committed Sep 3, 2023
1 parent 0f5e7ed commit 43a2a64
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rtichoke/rtichoke.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""rtichoke is a package for interactive vizualization of performance metrics
"""
import numpy as np
from typing import Union
from .helpers.helper_functions import tprint


Expand All @@ -25,8 +26,8 @@ class Rtichoke:

def __init__(
self,
probs: tuple[list | np.ndarray],
reals: tuple[list | np.ndarray],
probs: Union[list, np.ndarray],
reals: Union[list, np.ndarray],
by: float = 0.01,
cal_n_bins: int = 100,
cal_strategy: str = "quantile",
Expand Down

0 comments on commit 43a2a64

Please sign in to comment.