Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Learner1D type hints and add typeguard to pytest tests #325

Merged
merged 5 commits into from
Aug 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions adaptive/learner/average_learner1D.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@
from collections import defaultdict
from copy import deepcopy
from math import hypot
from typing import Callable, DefaultDict, Dict, List, Optional, Sequence, Set, Tuple
from typing import (
Callable,
DefaultDict,
Dict,
Iterable,
List,
Optional,
Sequence,
Set,
Tuple,
)

import numpy as np
import scipy.stats
Expand Down Expand Up @@ -356,7 +366,7 @@ def _update_losses_resampling(self, x: Real, real=True) -> None:
if (b is not None) and right_loss_is_unknown:
self.losses_combined[x, b] = float("inf")

def _calc_error_in_mean(self, ys: Sequence[Real], y_avg: Real, n: int) -> float:
def _calc_error_in_mean(self, ys: Iterable[Real], y_avg: Real, n: int) -> float:
variance_in_mean = sum((y - y_avg) ** 2 for y in ys) / (n - 1)
t_student = scipy.stats.t.ppf(1 - self.alpha, df=n - 1)
return t_student * (variance_in_mean / n) ** 0.5
Expand Down
4 changes: 2 additions & 2 deletions adaptive/learner/base_learner.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
from adaptive.utils import _RequireAttrsABCMeta, load, save


def uses_nth_neighbors(n):
def uses_nth_neighbors(n: int):
"""Decorator to specify how many neighboring intervals the loss function uses.

Wraps loss functions to indicate that they expect intervals together
with ``n`` nearest neighbors

The loss function will then receive the data of the N nearest neighbors
(``nth_neighbors``) aling with the data of the interval itself in a dict.
(``nth_neighbors``) along with the data of the interval itself in a dict.
The `~adaptive.Learner1D` will also make sure that the loss is updated
whenever one of the ``nth_neighbors`` changes.

Expand Down
Loading