-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1804 from alejoe91/deepinterp
Deepinterpolation revived: training, transfer, and inference with more flexibility
- Loading branch information
Showing
9 changed files
with
981 additions
and
313 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Testing deepinterpolation | ||
|
||
on: | ||
pull_request: | ||
types: [synchronize, opened, reopened] | ||
branches: | ||
- main | ||
|
||
concurrency: # Cancel previous workflows on the same pull request | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-and-test: | ||
name: Test on ${{ matrix.os }} OS | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu-latest"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v35 | ||
- name: Deepinteprolation changes | ||
id: modules-changed | ||
run: | | ||
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do | ||
if [[ $file == *"/deepinterpolation/"* ]]; then | ||
echo "DeepInterpolation changed" | ||
echo "DEEPINTERPOLATION_CHANGED=true" >> $GITHUB_OUTPUT | ||
fi | ||
done | ||
- name: Install dependencies | ||
if: ${{ steps.modules-changed.outputs.DEEPINTERPOLATION_CHANGED == 'true' }} | ||
run: | | ||
python -m pip install -U pip # Official recommended way | ||
# install deepinteprolation | ||
pip install tensorflow==2.7.0 | ||
pip install deepinterpolation@git+https://github.com/AllenInstitute/deepinterpolation.git | ||
pip install protobuf==3.20.* | ||
pip install -e .[full,test_core] | ||
- name: Test DeepInterpolation with pytest | ||
if: ${{ steps.modules-changed.outputs.DEEPINTERPOLATION_CHANGED == 'true' }} | ||
run: | | ||
pytest -v src/spikeinterface/preprocessing/deepinterpolation | ||
shell: bash # Necessary for pipeline to work on windows |
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 +1,2 @@ | ||
from .deepinterpolation import DeepInterpolatedRecording, deepinterpolate | ||
from .train import train_deepinterpolation |
Oops, something went wrong.