Skip to content

Commit

Permalink
Merge pull request #70 from darsnack/darsnack/vision-refactor
Browse files Browse the repository at this point in the history
Refactor repo with more complete models and documentation
  • Loading branch information
DhairyaLGandhi authored Jul 29, 2021
2 parents 23df74c + 07925ea commit 88b7ca6
Show file tree
Hide file tree
Showing 35 changed files with 1,418 additions and 52,775 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,13 @@ on:
types: [opened, reopened]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.2.0]
julia-arch: [x86]
os: [ubuntu-latest]
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
34 changes: 34 additions & 0 deletions .github/workflows/Publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Adapted from https://github.com/MichaelHatherly/Publish.jl
name: Publish

on:
push:
branches: ['main']

jobs:
publish:
name: "Publish Documentation (dev)"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
ref: gh-pages
path: gh-pages
- uses: julia-actions/setup-julia@latest
with:
version: '1.5'
- name: Install dependencies
run: |
julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
- name: Build and deploy
run: |
cd gh-pages
julia --color=yes --project=../docs -e "using Pkg; Pkg.instantiate()"
julia --color=yes --project=../docs -e 'using Pkg; Pkg.develop(path="..")'
julia --color=yes --project=../docs ../docs/make.jl
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "(dev) Built by Publish.jl."
git push
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
*.jl.*.cov
*.jl.mem
*.bson

# manifests
docs/Manifest.toml
Manifest.toml
39 changes: 39 additions & 0 deletions Artifacts.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[densenet121]
git-tree-sha1 = "ffc7f7ed1e7f67baca4b76f6c100e0d5042ff063"
lazy = true

[[densenet121.download]]
sha256 = "3fd10f0be70cf072fa7f1358f1fbbe01138440dbcaec1b7c8e007084382c1557"
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/densenet121-0.1.1.tar.gz"

[googlenet]
git-tree-sha1 = "56cc81845fcca30508fe81da18c7ba0d96d72cdd"
lazy = true

[[googlenet.download]]
sha256 = "8ab8d60cc26e81451473badc9dc749b5ffc170a11bc00fb4b203da34fbfdc996"
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/googlenet-0.1.1.tar.gz"

[resnet50]
git-tree-sha1 = "ea3effeaf1ea3969ed5c609f5db5cd0e456ce799"
lazy = true

[[resnet50.download]]
sha256 = "17760ae50e3d59ed7d74c3dfcdb9f0eeaccec1e2ccd095663955c9fed4f318a8"
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/resnet50-0.1.1.tar.gz"

[squeezenet]
git-tree-sha1 = "e0e53eb402efe4693417db8cbcc31519e74c8c74"
lazy = true

[[squeezenet.download]]
sha256 = "a3e60f2731296cdf0f32b79badd227eb8dad88a9bee8c828dbe60382869c50f0"
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/squeezenet-0.1.1.tar.gz"

[vgg19]
git-tree-sha1 = "072056ec63bf7308cf89885e91852666e191e80a"
lazy = true

[[vgg19.download]]
sha256 = "0fa000609965604b9d249e84190c30d067d443d73e6c8e340ef09bd013d0bc90"
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/vgg19-0.1.1.tar.gz"
Loading

0 comments on commit 88b7ca6

Please sign in to comment.