Skip to content

Commit

Permalink
Upgrade fbcode/pytorch to Python Scientific Stack 2 (#680)
Browse files Browse the repository at this point in the history
Summary:

X-link: pytorch/captum#1387

X-link: pytorch/botorch#2584

X-link: pytorch/audio#3845

Differential Revision: D64008689
  • Loading branch information
igorsugak authored and facebook-github-bot committed Oct 18, 2024
1 parent aea78b3 commit 52913c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opacus/accountants/analysis/prv/prvs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from typing import Tuple

import numpy as np
import numpy.typing as npt
from scipy import integrate
from scipy.special import erfc

Expand Down Expand Up @@ -133,7 +134,7 @@ def mean(self) -> float:

@dataclass
class DiscretePRV:
pmf: np.ndarray
pmf: npt.NDArray
domain: Domain

def __len__(self) -> int:
Expand Down

0 comments on commit 52913c9

Please sign in to comment.