Skip to content

Commit

Permalink
Add net diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
mickypaganini committed May 31, 2016
1 parent 2465279 commit bbd99db
Show file tree
Hide file tree
Showing 5 changed files with 1,840 additions and 217 deletions.
18 changes: 17 additions & 1 deletion FFNN_RNN.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,13 @@
"model.summary()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<img src='./images/dnnTutorial.png'>"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -3775,7 +3782,16 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's look at a fancier way of solving the same classification problem. In this case we will use Recurrent Neural Netwroks. These allow you to process variable length sequences of data. For example, we can use them to describe an event in terms of the properties of its jets, whose number varies event by event. We could also describe the same event using the properties of its muons, or any other particle that appears in it. Because the number of particles of each type changes in each event, we need the flexibility of RNNs to process this type of data."
"Let's look at a fancier way of solving the same classification problem. In this case we will use Recurrent Neural Netwroks. These allow you to process variable length sequences of data. For example, we can use them to describe an event in terms of the properties of its jets, whose number varies event by event. We could also describe the same event using the properties of its muons, or any other particle that appears in it. Because the number of particles of each type changes in each event, we need the flexibility of RNNs to process this type of data.\n",
"<img src='./images/RNNdetail.png'>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We will build an event-level classifier with 4 recurrent branches for the 4 different types of particles in the event:\n",
"<img src='./images/rnnTutorial.png'>"
]
},
{
Expand Down
Binary file added images/RNNdetail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/dnnTutorial.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/rnnTutorial.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,039 changes: 1,823 additions & 216 deletions root_numpy_pandas.ipynb

Large diffs are not rendered by default.

0 comments on commit bbd99db

Please sign in to comment.