Skip to content

Commit cd32e73

Browse files
author
Documenter.jl
committed
delete history
0 parents  commit cd32e73

File tree

1,669 files changed

+309726
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,669 files changed

+309726
-0
lines changed

.buildkite/pipeline.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
steps:
2+
- label: "GPU integeration with julia v1.6"
3+
plugins:
4+
- JuliaCI/julia#v1:
5+
version: "1"
6+
- JuliaCI/julia-test#v1: ~
7+
agents:
8+
queue: "juliagpu"
9+
cuda: "*"
10+
timeout_in_minutes: 120

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: https://numfocus.salsalabs.org/donate-to-julia/index.html

.github/workflows/CI.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
10+
tags: '*'
11+
12+
jobs:
13+
test:
14+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
15+
runs-on: ${{ matrix.os }}
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
version:
20+
- '1' # Replace this with the minimum Julia version that your package supports.
21+
- 'nightly'
22+
os:
23+
- ubuntu-latest
24+
- macOS-latest
25+
- windows-latest
26+
arch:
27+
- x64
28+
steps:
29+
- uses: actions/checkout@v2
30+
- uses: julia-actions/setup-julia@v1
31+
with:
32+
version: ${{ matrix.version }}
33+
arch: ${{ matrix.arch }}
34+
- uses: actions/cache@v1
35+
env:
36+
cache-name: cache-artifacts
37+
with:
38+
path: ~/.julia/artifacts
39+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
40+
restore-keys: |
41+
${{ runner.os }}-test-${{ env.cache-name }}-
42+
${{ runner.os }}-test-
43+
${{ runner.os }}-
44+
- uses: julia-actions/julia-buildpkg@v1
45+
- uses: julia-actions/julia-runtest@v1
46+

.github/workflows/CompatHelper.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CompatHelper
2+
3+
on:
4+
schedule:
5+
- cron: '00 * * * *'
6+
issues:
7+
types: [opened, reopened]
8+
9+
jobs:
10+
CompatHelper:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Pkg.add("CompatHelper")
14+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
15+
- name: CompatHelper.main()
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
19+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/Publish.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Adapted from https://github.com/MichaelHatherly/Publish.jl
2+
name: Publish
3+
4+
on:
5+
push:
6+
branches: 'master'
7+
8+
jobs:
9+
publish:
10+
name: "Publish Documentation (dev)"
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
ref: gh-pages
16+
path: gh-pages
17+
- uses: julia-actions/setup-julia@latest
18+
with:
19+
version: '1.5'
20+
- name: Install dependencies
21+
run: |
22+
julia --color=yes --project=. -e 'using Pkg; Pkg.instantiate()'
23+
- name: Build and deploy
24+
run: |
25+
cd gh-pages
26+
julia --color=yes --project=../docs -e "using Pkg; Pkg.instantiate()"
27+
julia --color=yes --project=../docs -e 'using Pkg; Pkg.develop(path="..")'
28+
julia --color=yes --project=../docs ../docs/make.jl
29+
git config user.name github-actions
30+
git config user.email github-actions@github.com
31+
git add .
32+
git commit -m "(dev) Built by Publish.jl."
33+
git push

.github/workflows/TagBot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: TagBot
2+
on:
3+
issue_comment: # THIS BIT IS NEW
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
# THIS 'if' LINE IS NEW
10+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11+
# NOTHING BELOW HAS CHANGED
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: JuliaRegistries/TagBot@v1
15+
with:
16+
token: ${{ secrets.GITHUB_TOKEN }}
17+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem
4+
*.bson
5+
6+
# manifests
7+
docs/Manifest.toml
8+
Manifest.toml

0.6.0/Artifacts.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[densenet121]
2+
git-tree-sha1 = "ffc7f7ed1e7f67baca4b76f6c100e0d5042ff063"
3+
lazy = true
4+
5+
[[densenet121.download]]
6+
sha256 = "3fd10f0be70cf072fa7f1358f1fbbe01138440dbcaec1b7c8e007084382c1557"
7+
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/densenet121-0.1.1.tar.gz"
8+
9+
[googlenet]
10+
git-tree-sha1 = "56cc81845fcca30508fe81da18c7ba0d96d72cdd"
11+
lazy = true
12+
13+
[[googlenet.download]]
14+
sha256 = "8ab8d60cc26e81451473badc9dc749b5ffc170a11bc00fb4b203da34fbfdc996"
15+
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/googlenet-0.1.1.tar.gz"
16+
17+
[resnet50]
18+
git-tree-sha1 = "ea3effeaf1ea3969ed5c609f5db5cd0e456ce799"
19+
lazy = true
20+
21+
[[resnet50.download]]
22+
sha256 = "17760ae50e3d59ed7d74c3dfcdb9f0eeaccec1e2ccd095663955c9fed4f318a8"
23+
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/resnet50-0.1.1.tar.gz"
24+
25+
[squeezenet]
26+
git-tree-sha1 = "e0e53eb402efe4693417db8cbcc31519e74c8c74"
27+
lazy = true
28+
29+
[[squeezenet.download]]
30+
sha256 = "a3e60f2731296cdf0f32b79badd227eb8dad88a9bee8c828dbe60382869c50f0"
31+
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/squeezenet-0.1.1.tar.gz"
32+
33+
[vgg19]
34+
git-tree-sha1 = "072056ec63bf7308cf89885e91852666e191e80a"
35+
lazy = true
36+
37+
[[vgg19.download]]
38+
sha256 = "0fa000609965604b9d249e84190c30d067d443d73e6c8e340ef09bd013d0bc90"
39+
url = "https://github.com/FluxML/MetalheadWeights/releases/download/v0.1.1/vgg19-0.1.1.tar.gz"

0.6.0/Project.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name = "Metalhead"
2+
uuid = "dbeba491-748d-5e0e-a39e-b530a07fa0cc"
3+
version = "0.6.0"
4+
5+
[deps]
6+
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
7+
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
8+
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
9+
Functors = "d9f16b24-f501-4c13-a1f2-28368ffc5196"
10+
LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3"
11+
12+
[compat]
13+
BSON = "0.3.2"
14+
Flux = "0.12"
15+
Functors = "0.2"
16+
julia = "1.4"
17+
18+
[extras]
19+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
20+
21+
[publish]
22+
title = "Metalhead.jl"
23+
24+
[targets]
25+
test = ["Test"]

0 commit comments

Comments
 (0)