View on GitHub

Bearded-android-docs

LeNet4

Download this project as a .zip file Download this project as a tar.gz file

Created Monday 31 March 2014

LeNet4 is a convolutational network created for single-digit recognition.
It consists of 4 layers H1, H2, H3, H4, and an output layer:

So far so good. The connections between layers are straightforward --- each layer is connected to exactly one layer in the next layer. But then we have layer H3...

The table below shows how each map in H3 is connected to the maps in H2. For example, H3.1 is connected to only H2.1 while H3.2 is connected to both H2.1 and H2.2.

|------+---+---+---+---+---+---+---+---+---+----+----+----|
|      | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
|------+---+---+---+---+---+---+---+---+---+----+----+----|
| H2.1 | X | X | X |   | X | X |   |   |   |    |    |    |
| H2.2 |   | X | X | X | X | X |   |   |   |    |    |    |
| H2.3 |   |   |   |   |   |   | X | X | X |    | X  | X  |
| H2.4 |   |   |   |   |   |   |   | X | X |  X | X  | X  |
|------+---+---+---+---+---+---+---+---+---+----+----+----|

Links


No backlinks to this page.
comments powered by Disqus