diff --git a/README.md b/README.md index 15986179..61a62f6c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,6 @@ For more information, check out our manuscript: Wang, Zijie J., Robert Turko, Omar Shaikh, Haekyu Park, Nilaksh Das, Fred Hohman, Minsuk Kahng, and Duen Horng Chau. arXiv preprint 2020. arXiv:2004.15004. - ## Live Demo For a live demo, visit: http://poloclub.github.io/cnn-explainer/ @@ -22,7 +21,7 @@ For a live demo, visit: http://poloclub.github.io/cnn-explainer/ Clone or download this repository: -``` +```bash git clone git@github.com:poloclub/cnn-explainer.git # use degit if you don't want to download commit histories @@ -31,19 +30,20 @@ degit poloclub/cnn-explainer Install the dependencies: -``` +```bash npm install ``` Then run CNN Explainer: -``` +```bash npm run dev ``` Navigate to [localhost:5000](https://localhost:5000). You should see CNN Explainer running in your broswer :) To see how we trained the CNN, visit the directory [`./tiny-vgg/`](tiny-vgg). +If you want to use CNN Explainer with your own CNN model or image classes, see [#8](/../../issues/8) and [#14](/../../issues/14). ## Credits @@ -65,9 +65,10 @@ We thank [Kantwon Rogers](https://www.kantwon.com), and the [Georgia Tech Visualization Lab](http://vis.gatech.edu) for their support and constructive feedback. - + ## Citation -``` + +```bibTeX @article{wangCNNExplainerLearning2020, title = {{{CNN Explainer}}: {{Learning Convolutional Neural Networks}} with {{Interactive Visualization}}}, shorttitle = {{{CNN Explainer}}}, @@ -82,10 +83,9 @@ for their support and constructive feedback. ``` ## License + The software is available under the [MIT License](https://github.com/poloclub/cnn-explainer/blob/master/LICENSE). ## Contact -If you have any questions, feel free to [open an issue](https://github.com/poloclub/cnn-explainer/issues/new/choose) or contact [Jay Wang](https://www.zijie.wang). - - +If you have any questions, feel free to [open an issue](https://github.com/poloclub/cnn-explainer/issues/new/choose) or contact [Jay Wang](https://zijie.wang). diff --git a/public/assets/figures/relu_graph.png b/public/assets/figures/relu_graph.png new file mode 100644 index 00000000..3db6ddbd Binary files /dev/null and b/public/assets/figures/relu_graph.png differ diff --git a/public/assets/figures/relu_graph.svg b/public/assets/figures/relu_graph.svg deleted file mode 100644 index 28b9d559..00000000 --- a/public/assets/figures/relu_graph.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - -10 - - - - - - -5 - - - - - 5 - - - - 10 - - - - - -10 - - - - - - -5 - - - - - 5 - - - - 10 - - - - - - - - - x - - - y - - - - diff --git a/src/Header.svelte b/src/Header.svelte index 87de69eb..24c46682 100644 --- a/src/Header.svelte +++ b/src/Header.svelte @@ -84,7 +84,7 @@
- + pdf icon
diff --git a/src/article/Article.svelte b/src/article/Article.svelte index f6581c76..bb8a7041 100644 --- a/src/article/Article.svelte +++ b/src/article/Article.svelte @@ -181,7 +181,7 @@ The ReLU activation function is a one-to-one mathematical operation: {reluEquation}

- relu graph + relu graph
Figure 3. The ReLU activation function graphed, which disregards all negative data.
diff --git a/src/overview/Modal.svelte b/src/overview/Modal.svelte index e3cce2a2..004182e1 100644 --- a/src/overview/Modal.svelte +++ b/src/overview/Modal.svelte @@ -178,8 +178,8 @@