Skip to content

Commit

Permalink
Merge pull request #770 from AIStream-Peelout/multimodal_models
Browse files Browse the repository at this point in the history
Adding CrossVIVIT and other multi-modal deep learning models
  • Loading branch information
isaacmg authored Oct 8, 2024
2 parents 89260c6 + f34821d commit 7e750a8
Show file tree
Hide file tree
Showing 119 changed files with 2,144 additions and 822 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ jobs:
name: Model basic tests
when: always
command: |
coverage run -m unittest -v tests/multi_modal_tests/test_cross_vivit.py
coverage run -m unittest -v tests/test_series_id.py
coverage run -m unittest -v tests/test_squashed.py
bash <(curl -s https://codecov.io/bash) -cF python
Expand Down Expand Up @@ -283,7 +284,7 @@ jobs:
- store_artifacts:
path: test-results
destination: test-results-trainer

- run:
name: upload results
when: always
Expand Down Expand Up @@ -340,14 +341,14 @@ jobs:
coverage run flood_forecast/trainer.py -p tests/test_dual.json
echo -e 'running dsanet \n'
coverage run flood_forecast/trainer.py -p tests/dsanet.json
- store_test_results:
path: test-results

- store_artifacts:
path: test-results
destination: test-results-trainer2

- run:
name: upload results
when: always
Expand Down Expand Up @@ -395,7 +396,7 @@ jobs:
- store_artifacts:
path: test-results
destination: test-results-trainer

- run:
name: upload results
when: always
Expand Down Expand Up @@ -475,4 +476,3 @@ workflows:
- trainer_test2:
requires:
- setup_and_install

4 changes: 2 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
max_line_length=122
ignore=E305,W504,E126,E401,E721
max-complexity=19
ignore=E305,W504,E126,E401,E721,F722
max-complexity=20
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ updates:
- 0.5.2
- dependency-name: torchvision
versions:
- 0.8.2
- 0.8.2
2 changes: 1 addition & 1 deletion .github/workflows/codesee-arch-diagram.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
steps:
- uses: Codesee-io/codesee-action@v2
with:
codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,11 @@ mypy
.mypy_cache
*.png
*.svf
*.svg
*.svg
.idea/flow-forecast.iml
.idea/inspectionProfiles/profiles_settings.xml
.idea/misc.xml
.idea/vcs.xml
.idea/workspace.xml
.idea/workspace.xml
.idea/workspace.xml
190 changes: 190 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml

- repo: https://github.com/hhatto/autopep8
rev: v2.0.4
hooks:
- id: autopep8
args: [--in-place, --aggressive, --aggressive, --max-line-length=122]
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ sphinx:
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: docs/requirements.txt
- requirements: docs/requirements.txt
Loading

0 comments on commit 7e750a8

Please sign in to comment.