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

Jean/efficient bootstrapping #3

Merged
merged 43 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
167fa42
trying
jeandut Jan 9, 2024
095b67b
not working because of weird class vs instance issue
jeandut Jan 9, 2024
d8266e6
getting nowhere
jeandut Jan 9, 2024
be02744
errors start to make more sense
jeandut Jan 11, 2024
71dc969
implicit self
jeandut Jan 11, 2024
e59dff6
supposedly working if no reinstantiation
jeandut Jan 12, 2024
9ed1e9d
weird bugs still...
jeandut Jan 13, 2024
1ed5ee5
fixing inii of algo
jeandut Jan 14, 2024
46f668e
iterating
jeandut Jan 15, 2024
7e63934
making slow progress
jeandut Jan 15, 2024
196c5c6
it runs !
jeandut Jan 15, 2024
7557813
fixing criterrion
jeandut Jan 16, 2024
8a6b748
fixing predict
jeandut Jan 16, 2024
17aa1ff
fixing metric
jeandut Jan 16, 2024
f6d7550
more robust equality check but is it needed ?
jeandut Jan 17, 2024
879f0fc
more strength to the popensity to see actual learning
jeandut Jan 18, 2024
1647aa9
starting up tests
jeandut Jan 18, 2024
43736e5
trying to launch tests
jeandut Jan 18, 2024
bd5989a
first CP of tests run
jeandut Jan 18, 2024
841108e
tests don't pass hmm...
jeandut Jan 18, 2024
f01aba8
trying to fix bootstrap
jeandut Jan 18, 2024
82bef30
bootstrapping is working
jeandut Jan 18, 2024
480709d
trying to make linting better
jeandut Jan 18, 2024
0ce62e0
trying to make linting better
jeandut Jan 18, 2024
bd5f184
trying to make linting better
jeandut Jan 18, 2024
4ce64d1
trying to make linting better
jeandut Jan 18, 2024
9ecb8ea
trying to make linting better
jeandut Jan 18, 2024
e5e4828
adding better docstring
jeandut Jan 18, 2024
80632cd
trying to make docs pass
jeandut Jan 18, 2024
cba499c
trying to make docs pass
jeandut Jan 18, 2024
5fdb6e9
adding doc and fixing it
jeandut Jan 18, 2024
15cfa36
trying to make sphinx pass
jeandut Jan 18, 2024
af1ad2f
trying to fix CI
jeandut Jan 18, 2024
4787a5e
tryiing to make CI pass
jeandut Jan 18, 2024
8dc5001
upping version
jeandut Jan 19, 2024
9f1f2ee
trying to install the correct version
jeandut Jan 19, 2024
a4bc853
fixing data error
jeandut Jan 22, 2024
2a73a01
first test working
jeandut Jan 22, 2024
3b3eec4
fixing linting
jeandut Jan 22, 2024
a73bdff
accomodating new update_from_checkpoint functon
jeandut Jan 22, 2024
390a466
Update setup.py
jeandut Jan 22, 2024
d773739
accomodating substrafl api chhange
jeandut Jan 23, 2024
aeaf189
new API compliance
jeandut Jan 23, 2024
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
4 changes: 4 additions & 0 deletions docs/source/api/strategies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ fedeca.strategies

.. autoclass:: fedeca.strategies.WebDisco

.. automodule:: fedeca.strategies.bootstraper

.. automodule:: fedeca.strategies.webdisco_utils


1 change: 1 addition & 0 deletions fedeca/__init__.py
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
1 change: 1 addition & 0 deletions fedeca/strategies/__init__.py
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
Loading
Loading