Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7884dea
update mdf_to_onnx branch to current scenario
parikshit14 Aug 9, 2022
396bf3a
Merge branch 'development' into examples/pytorch-to-mdf
parikshit14 Aug 10, 2022
1e528d6
added resnet18 model from torchvision library
parikshit14 Aug 10, 2022
7cf4450
Add fixes to support latest version of PyTorch
davidt0x Aug 10, 2022
a6e0121
Remove dependency of resnet example and tests on images
davidt0x Aug 10, 2022
5a62001
Fix bug when tuple is not passed to args.
davidt0x Aug 10, 2022
eb02936
Fix bug where type is always "Tensor" of PyTorch->MDF
davidt0x Aug 10, 2022
e48afe0
Fix a bunch of issues for Pytorch->MDF for VGG16, ResNet, CNN.
davidt0x Aug 12, 2022
589af92
This hack for handling Reshape was expressed incorrectly.
davidt0x Aug 12, 2022
79985df
Remove hack for Clip.
davidt0x Aug 12, 2022
a370db8
Relax the PyTorch lower bound pin.
davidt0x Aug 12, 2022
21bdc21
Set tolerance on allclose to test_simple_convolution for now
davidt0x Aug 12, 2022
7564d50
added standard examples from torchvision
parikshit14 Aug 12, 2022
207dc98
fix formating
parikshit14 Aug 12, 2022
0a64741
Refactor PyTorch model fixtures into separate conftest.py
davidt0x Aug 12, 2022
914dea6
Change CI workflow to install PsyNeuLink after core dependencies have…
davidt0x Aug 12, 2022
66ab273
Merge branch 'examples/pytorch-to-mdf' of https://github.com/ModECI/M…
davidt0x Aug 12, 2022
861b6be
Merged new models @parikshit14 added in pytorch/conftest.py
davidt0x Aug 12, 2022
3017d15
Handle new way pretrain=False is specified for torchvision 0.13.
davidt0x Aug 12, 2022
b40b80e
Refactor tests for torchvision models.
davidt0x Aug 13, 2022
ae4f94e
Switch CI script back to pre-install PNL from github devel.
davidt0x Aug 13, 2022
d19ada6
Add back in guard to prevent pytorch tests when torch is not installed.
davidt0x Aug 13, 2022
32cea77
Add pytest.importskip('torch') to test_torchvision_models
davidt0x Aug 13, 2022
01524e1
Really fix the skipping of pytorch tests when torch is not available.
davidt0x Aug 13, 2022
af35b89
Remove a bunch of unused imports in pytorch exporter.py.
davidt0x Aug 13, 2022
8029275
Add h5py as optional dep.
davidt0x Aug 13, 2022
6e58777
added notebook tutorial to compare pytorch and mdf models
parikshit14 Aug 24, 2022
ff8ff4f
merged development to resolve conflicts
parikshit14 Aug 24, 2022
e1dd9ce
added output IMAGENET classes
parikshit14 Aug 25, 2022
978d437
Merge branch 'development' of https://github.com/ModECI/MDF into exam…
davidt0x Sep 12, 2022
e0d6415
Fix issue where '-' characters in port names
davidt0x Sep 12, 2022
18db98b
Add types and shapes to out ports generated from PyTorch importer.py
davidt0x Oct 5, 2022
f1db317
Merge
davidt0x Oct 5, 2022
36a4f32
ONNX Constant ops are now inserted as parameters.
davidt0x Oct 5, 2022
3062961
Temporary fix for BatchNormalization
davidt0x Oct 5, 2022
0ff2336
Seed torch random numbers for deterministic tests.
davidt0x Oct 5, 2022
016e856
Switch tolerance to absolute for torchvision models
davidt0x Oct 5, 2022
fd5a23c
Mark torchvision.inception_v3 test as xfail.
davidt0x Oct 5, 2022
7541d8d
Merge branch 'examples/pytorch-to-mdf' of https://github.com/ModECI/M…
davidt0x Oct 5, 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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ jobs:
run: |
python -m pytest -m coremdf tests/

- name: Pre-install PsyNeuLink (from development branch on github)
run: python -m pip install git+https://github.com/ModECI/PsyNeuLink@devel

- name: Install optional dependencies
run: python -m pip install .[all]

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
rev: v3.4.0
hooks:
- id: check-added-large-files
args: ['--maxkb=800']
args: ['--maxkb=3000']
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
Expand Down
Loading