This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! \file sampleMNIST.cpp | |
//! \brief This file contains the implementation of the MNIST sample. | |
//! | |
//! It builds a TensorRT engine by importing a trained MNIST Caffe model. It uses the engine to run | |
//! inference on an input image of a digit. | |
//! It can be run with the following command line: | |
//! Command: ./sample_mnist [-h or --help] [-d=/path/to/data/dir or --datadir=/path/to/data/dir] | |
#include "common.h" | |
#include "argsParser.h" |