Skip to content

Commit c2d804f

Browse files
committed
updates
1 parent b9517e1 commit c2d804f

22 files changed

+952
-1
lines changed

H2RecogTF/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
------------------------------------------------------------
2+
- Experiment with using neural networks for a recognition task
3+
- Datasets:
4+
- Mnist http://yann.lecun.com/exdb/mnist
5+
- CiFar10 https://www.cs.toronto.edu/~kriz/cifar.html
6+
------------------------------------------------------------
7+
8+
# Demonstrate components
9+
1. process images (input, batch, format conversion, etc.)
10+
2. perform training (with proper batching and validating)
11+
3. estimate performance (e.g., error rate vs. run time and iterations, resource usage statistics)
12+
13+
### Note: Use CNN with a choice of number of blocks, number of layers, number of neurons per layer etc
14+
15+
- Exec
16+
```
17+
$ python cnn_recog_mnist.py
18+
```
19+
- Program Dumps the results in stdio/console
20+
- plots are dumped in output folder

H2RecogTF/Report.docx

124 KB
Binary file not shown.

H2RecogTF/Report.pdf

332 KB
Binary file not shown.
2.77 MB
Binary file not shown.
903 Bytes
Binary file not shown.
67.9 KB
Binary file not shown.

H2RecogTF/checkpoints/checkpoint

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
model_checkpoint_path: "best_validation"
2+
all_model_checkpoint_paths: "best_validation"

H2RecogTF/cnn.log

Lines changed: 133 additions & 0 deletions
Large diffs are not rendered by default.

H2RecogTF/cnn_recog_mnist.py

Lines changed: 547 additions & 0 deletions
Large diffs are not rendered by default.
1.57 MB
Binary file not shown.

0 commit comments

Comments
 (0)