mlpack 3.4.2
inception_score.hpp
Go to the documentation of this file.
1
13#ifndef MLPACK_METHODS_METRICS_INCEPTION_SCORE_HPP
14#define MLPACK_METHODS_METRICS_INCEPTION_SCORE_HPP
15
16#include <mlpack/prereqs.hpp>
17
18namespace mlpack {
19namespace ann /* Artificial Neural Network */ {
20
39template<typename ModelType>
40double InceptionScore(ModelType Model,
41 arma::mat images,
42 size_t splits = 1);
43
44
45} // namespace ann
46} // namespace mlpack
47
48#include "inception_score_impl.hpp"
49
50#endif
double InceptionScore(ModelType Model, arma::mat images, size_t splits=1)
Function that computes Inception Score for a set of images produced by a GAN.
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
The core includes that mlpack expects; standard C++ includes and Armadillo.