-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/unifyai/models into weigh…
…ts_refactor
- Loading branch information
Showing
4 changed files
with
52 additions
and
1 deletion.
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
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,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 |
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,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 |
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,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 |