Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
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
18
namespace
mlpack
{
19
namespace
ann
/* Artificial Neural Network */
{
20
39
template
<
typename
ModelType>
40
double
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
mlpack
Linear algebra utility functions, generally performed on matrices or vectors.
Definition:
add_to_cli11.hpp:21
prereqs.hpp
The core includes that mlpack expects; standard C++ includes and Armadillo.
mlpack::ann::InceptionScore
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.