Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 818 Bytes

readme.md

File metadata and controls

32 lines (29 loc) · 818 Bytes

This folder contains simple usage examples to build and run the inference of neural network models:

.
├── glow
│   ├── ...
└── work
    ├── calibration
    │   ├── images224
    │   ├── images299
    │   └── ...
    ├── datasets
    │   ├── imagenet
    │   └── mnist
    ├── models
    │   ├── lenet
    │   ├── mnist
    │   ├── mobilenet
    │   ├── resnet18
    │   └── squeezenet
    ├── readme.md
    ├── scripts
    │   ├── exec_accuracy.sh
    │   ├── ground_truth_imagenet.txt
    │   ├── ground_truth_mnist.txt
    │   ├── measure_acc.cpp
    │   ├── measure_mnist.cpp
    │   ├── ...