Skip to content

Commit

Permalink
DeadReluCallback improved (#4)
Browse files Browse the repository at this point in the history
* added first callback activation callback

* restructuring

* added dead relu detector

* Update README.md

* Update README.md

* Update README.md

* added GradCAM and worked on sample implementation

* added possibility to log all n epochs

* worked on docs

* deadrelu now also logs mean
  • Loading branch information
FabianGroeger96 authored Apr 28, 2021
1 parent c0664e5 commit 0d56f8f
Show file tree
Hide file tree
Showing 3 changed files with 310 additions and 112 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/docs_pages_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: docs_pages_workflow

# execute this workflow automatically when a we push to master
on:
push:
branches: [ master ]

jobs:

build_docs_job:
runs-on: ubuntu-latest
container: debian:buster-slim

steps:

- name: Prereqs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
apt-get update
apt-get install -y git
git clone --depth 1 "https://token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" .
shell: bash

- name: Execute script to build our documentation and update pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: "docs/buildDocs.sh"
shell: bash
Loading

0 comments on commit 0d56f8f

Please sign in to comment.