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
38
template
<
typename
ModelType>
39
double
InceptionScore
(ModelType Model,
40
arma::mat images,
41
size_t
splits = 1);
42
43
44
}
// namespace ann
45
}
// namespace mlpack
46
47
#include "inception_score_impl.hpp"
48
49
#endif
mlpack
strip_type.hpp
Definition:
add_to_po.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.