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

ENH Add streaming functionality to Synergistic Forest #537

Merged
merged 26 commits into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
98e7193
update to current state of streaming (still bugs)
nhahn7 Feb 18, 2022
6297197
BUG remove extra voters
nhahn7 Feb 18, 2022
f0e518c
BUG fix transformer/voter & decider splitting
nhahn7 Feb 22, 2022
f27e59f
ENH remove printing of unique y values
nhahn7 Feb 23, 2022
14c3088
ENH add update_task for networks
nhahn7 Mar 10, 2022
900567a
DOC black format and add docstrings
nhahn7 Mar 10, 2022
53841df
DOC black format and remove extra printing
nhahn7 Mar 11, 2022
08fa9fd
black format notebook
nhahn7 Mar 11, 2022
4991d56
DOC optimize sphinx version
nhahn7 Mar 17, 2022
03ab355
Merge pull request #540 from neurodata/staging
jdey4 Mar 17, 2022
5e9614b
ENH add update_task test
nhahn7 Mar 17, 2022
8b4113a
Merge branch 'staging' into streaming
PSSF23 Mar 17, 2022
54662cf
Merge branch 'neurodata:main' into streaming
nhahn7 Apr 18, 2022
36bc5ae
BUG pass class labels to add_task
nhahn7 Apr 21, 2022
988e0d1
FIX update CircleCI to version 3
nhahn7 May 17, 2022
dc49896
ENH change input_classes to classes
nhahn7 May 17, 2022
58e4175
BUG update with new data only
nhahn7 May 17, 2022
8562034
ENH add streaming tutorial (XOR and spirals)
nhahn7 May 17, 2022
4e3a14e
ENH black formatting
nhahn7 May 17, 2022
828c9ab
ENH Black formatting
nhahn7 May 17, 2022
fcbc58a
FIX updated Black, reformatted
nhahn7 May 17, 2022
9f9c761
FIX black format notebook
nhahn7 May 17, 2022
6897f94
ENH remove test and add notebook to rst list
nhahn7 May 17, 2022
ce2eb69
FIX remove test
nhahn7 May 17, 2022
e892b40
FIX black format tests
nhahn7 May 17, 2022
87fab73
Merge branch 'staging' into streaming
PSSF23 May 18, 2022
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
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v2-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -22,7 +22,7 @@ jobs:
pip install --upgrade pip
pip install -r dev-requirements.txt
- save_cache:
key: v2-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand All @@ -45,7 +45,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -54,7 +54,7 @@ jobs:
pip install -r dev-requirements.txt
pip install -e .
- save_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -91,7 +91,7 @@ jobs:
pip install -r dev-requirements.txt
pip install -e .
- save_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand Down
Loading