-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* trying * not working because of weird class vs instance issue * getting nowhere * errors start to make more sense * implicit self * supposedly working if no reinstantiation * weird bugs still... * fixing inii of algo * iterating * making slow progress * it runs ! * fixing criterrion * fixing predict * fixing metric * more robust equality check but is it needed ? * more strength to the popensity to see actual learning * starting up tests * trying to launch tests * first CP of tests run * tests don't pass hmm... * trying to fix bootstrap * bootstrapping is working * trying to make linting better * trying to make linting better * trying to make linting better * trying to make linting better * trying to make linting better * adding better docstring * trying to make docs pass * trying to make docs pass * adding doc and fixing it * trying to make sphinx pass * trying to fix CI * tryiing to make CI pass * upping version * trying to install the correct version * fixing data error * first test working * fixing linting * accomodating new update_from_checkpoint functon * Update setup.py * accomodating substrafl api chhange * new API compliance
- Loading branch information
Showing
9 changed files
with
966 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
"""Top level package for :mod:`fedeca`.""" | ||
from .fedeca_core import FedECA | ||
from .fedeca_core import LogisticRegressionTorch | ||
from .competitors import PooledIPTW, MatchingAjudsted, NaiveComparison |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
"""Init file for strategies.""" | ||
from .webdisco import WebDisco | ||
from .bootstraper import make_bootstrap_metric_function, make_bootstrap_strategy |
Oops, something went wrong.