Skip to content

Commit

Permalink
Landeswettbewerb
Browse files Browse the repository at this point in the history
fixed variable naming bug
added fooling-analysis
  • Loading branch information
B1T0 committed Mar 11, 2018
1 parent bc57fb7 commit 77cf802
Show file tree
Hide file tree
Showing 13 changed files with 496 additions and 58 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,6 @@ mykey.key

# mac files
*.DS_Store

# specific files
/resources/NeuronRank/
27 changes: 2 additions & 25 deletions resources/1511967049/saves/checkpoint
Original file line number Diff line number Diff line change
@@ -1,25 +1,2 @@
model_checkpoint_path: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00009384"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00000391"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00000782"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00001173"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00001564"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00001955"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00002346"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00002737"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00003128"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00003519"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00003910"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00004301"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00004692"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00005083"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00005474"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00005865"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00006256"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00006647"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00007038"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00007429"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00007820"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00008211"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00008602"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00008993"
all_model_checkpoint_paths: "/ssd/tobias/DeepUnderstanding/src/TEXT/five-authors/runs/cnn/1511967049/saves/cnn.ckpt-00009384"
model_checkpoint_path: "cnn.ckpt-00009384"
all_model_checkpoint_paths: "cnn.ckpt-00009384"
Binary file modified resources/1511967049/saves/cnn.ckpt-00009384.data-00000-of-00001
Binary file not shown.
Binary file modified resources/1511967049/saves/cnn.ckpt-00009384.index
Binary file not shown.
Binary file modified resources/1511967049/saves/cnn.ckpt-00009384.meta
Binary file not shown.
14 changes: 7 additions & 7 deletions src/NeuronRank.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,18 @@
},
"outputs": [],
"source": [
"w_1 = sess.run('cnn/conv-maxpool-1/W:0')\n",
"b_1 = sess.run('cnn/conv-maxpool-1/b:0')\n",
"w_2 = sess.run('cnn/conv-maxpool-2/W:0')\n",
"b_2 = sess.run('cnn/conv-maxpool-2/b:0')\n",
"w_1 = sess.run('cnn/conv-1/W:0')\n",
"b_1 = sess.run('cnn/conv-1/b:0')\n",
"w_2 = sess.run('cnn/conv-2/W:0')\n",
"b_2 = sess.run('cnn/conv-2/b:0')\n",
"w_3 = sess.run('cnn/conv-3/W:0')\n",
"b_3 = sess.run('cnn/conv-3/b:0')\n",
"w_4 = sess.run('cnn/conv-4/W:0')\n",
"b_4 = sess.run('cnn/conv-4/b:0')\n",
"w_5 = sess.run('cnn/conv-5/W:0')\n",
"b_5 = sess.run('cnn/conv-5/b:0')\n",
"w_6 = sess.run('cnn/conv-maxpool-6/W:0')\n",
"b_6 = sess.run('cnn/conv-maxpool-6/b:0')\n",
"w_6 = sess.run('cnn/conv-6/W:0')\n",
"b_6 = sess.run('cnn/conv-6/b:0')\n",
"w_fc = sess.run('cnn/fc/W-fc:0')\n",
"b_fc = sess.run('cnn/fc/b-fc:0')\n",
"weights = [w_1, w_2, w_3, w_4, w_5, w_6, w_fc]\n",
Expand Down Expand Up @@ -215,7 +215,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
"version": "3.5.4"
}
},
"nbformat": 4,
Expand Down
14 changes: 7 additions & 7 deletions src/filter-analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,18 @@
},
"outputs": [],
"source": [
"w_1 = sess.run('cnn/conv-maxpool-1/W:0')\n",
"b_1 = sess.run('cnn/conv-maxpool-1/b:0')\n",
"w_2 = sess.run('cnn/conv-maxpool-2/W:0')\n",
"b_2 = sess.run('cnn/conv-maxpool-2/b:0')\n",
"w_1 = sess.run('cnn/conv-1/W:0')\n",
"b_1 = sess.run('cnn/conv-1/b:0')\n",
"w_2 = sess.run('cnn/conv-2/W:0')\n",
"b_2 = sess.run('cnn/conv-2/b:0')\n",
"w_3 = sess.run('cnn/conv-3/W:0')\n",
"b_3 = sess.run('cnn/conv-3/b:0')\n",
"w_4 = sess.run('cnn/conv-4/W:0')\n",
"b_4 = sess.run('cnn/conv-4/b:0')\n",
"w_5 = sess.run('cnn/conv-5/W:0')\n",
"b_5 = sess.run('cnn/conv-5/b:0')\n",
"w_6 = sess.run('cnn/conv-maxpool-6/W:0')\n",
"b_6 = sess.run('cnn/conv-maxpool-6/b:0')\n",
"w_6 = sess.run('cnn/conv-6/W:0')\n",
"b_6 = sess.run('cnn/conv-6/b:0')\n",
"w_fc = sess.run('cnn/fc/W-fc:0')\n",
"b_fc = sess.run('cnn/fc/b-fc:0')\n",
"weights = [w_1, w_2, w_3, w_4, w_5, w_6, w_fc]\n",
Expand Down Expand Up @@ -417,7 +417,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
"version": "3.5.4"
}
},
"nbformat": 4,
Expand Down
14 changes: 7 additions & 7 deletions src/filter-comparison.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,18 @@
},
"outputs": [],
"source": [
"w_1 = sess.run('cnn/conv-maxpool-1/W:0')\n",
"b_1 = sess.run('cnn/conv-maxpool-1/b:0')\n",
"w_2 = sess.run('cnn/conv-maxpool-2/W:0')\n",
"b_2 = sess.run('cnn/conv-maxpool-2/b:0')\n",
"w_1 = sess.run('cnn/conv-1/W:0')\n",
"b_1 = sess.run('cnn/conv-1/b:0')\n",
"w_2 = sess.run('cnn/conv-2/W:0')\n",
"b_2 = sess.run('cnn/conv-2/b:0')\n",
"w_3 = sess.run('cnn/conv-3/W:0')\n",
"b_3 = sess.run('cnn/conv-3/b:0')\n",
"w_4 = sess.run('cnn/conv-4/W:0')\n",
"b_4 = sess.run('cnn/conv-4/b:0')\n",
"w_5 = sess.run('cnn/conv-5/W:0')\n",
"b_5 = sess.run('cnn/conv-5/b:0')\n",
"w_6 = sess.run('cnn/conv-maxpool-6/W:0')\n",
"b_6 = sess.run('cnn/conv-maxpool-6/b:0')\n",
"w_6 = sess.run('cnn/conv-6/W:0')\n",
"b_6 = sess.run('cnn/conv-6/b:0')\n",
"w_fc = sess.run('cnn/fc/W-fc:0')\n",
"b_fc = sess.run('cnn/fc/b-fc:0')\n",
"weights = [w_1, w_2, w_3, w_4, w_5, w_6, w_fc]\n",
Expand Down Expand Up @@ -10591,7 +10591,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
"version": "3.5.4"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions src/first-filter-visualization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
},
"outputs": [],
"source": [
"w_1 = sess.run('cnn/conv-maxpool-1/W:0')"
"w_1 = sess.run('cnn/conv-1/W:0')"
]
},
{
Expand Down Expand Up @@ -2653,7 +2653,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
"version": "3.5.4"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 77cf802

Please sign in to comment.