Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/unifyai/models into weigh…
Browse files Browse the repository at this point in the history
…ts_refactor
  • Loading branch information
juliagsy committed Jun 21, 2023
2 parents f893498 + 89eb870 commit f590adf
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
- name: Run Tests
run: |
cd models
docker run --rm -v `pwd`:/models unifyai/models:latest python3 -m pytest ivy_models_tests/
docker run --rm -v `pwd`:/models unifyai/models:latest python3 -m pytest ivy_models_tests/convnext
17 changes: 17 additions & 0 deletions .github/workflows/test-resnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test-resnet
on: [push, pull_request]
jobs:
run-nightly-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️Ivy Models
uses: actions/checkout@v2
with:
lfs: true
path: models
persist-credentials: false

- name: Run Tests
run: |
cd models
docker run --rm -v `pwd`:/models unifyai/models:latest python3 -m pytest ivy_models_tests/resnet
17 changes: 17 additions & 0 deletions .github/workflows/test-transformers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test-transformers
on: [push, pull_request]
jobs:
run-nightly-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️Ivy Models
uses: actions/checkout@v2
with:
lfs: true
path: models
persist-credentials: false

- name: Run Tests
run: |
cd models
docker run --rm -v `pwd`:/models unifyai/models:latest python3 -m pytest ivy_models_tests/transformers
17 changes: 17 additions & 0 deletions .github/workflows/test-vgg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test-vgg
on: [push, pull_request]
jobs:
run-nightly-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️Ivy Models
uses: actions/checkout@v2
with:
lfs: true
path: models
persist-credentials: false

- name: Run Tests
run: |
cd models
docker run --rm -v `pwd`:/models unifyai/models:latest python3 -m pytest ivy_models_tests/vgg

0 comments on commit f590adf

Please sign in to comment.