OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EvaluationStage
(Results
1 - 4
of
4
) sorted by null
/external/tensorflow/tensorflow/lite/tools/evaluation/
evaluation_stage_test.cc
48
TEST(
EvaluationStage
, CreateFailsForMissingSpecification) {
52
std::unique_ptr<
EvaluationStage
> stage_ptr =
EvaluationStage
::Create(config);
56
TEST(
EvaluationStage
, StageEnableRequired) {
65
std::unique_ptr<
EvaluationStage
> stage_ptr =
EvaluationStage
::Create(config);
68
stage_ptr =
EvaluationStage
::Create(config);
72
TEST(
EvaluationStage
, IncompleteConfig) {
76
std::unique_ptr<
EvaluationStage
> stage_ptr =
EvaluationStage
::Create(config)
[
all
...]
identity_stage.h
25
// Simple
EvaluationStage
that passes INPUT_VALUE to OUTPUT_VALUE if the former
30
class IdentityStage : public
EvaluationStage
{
33
:
EvaluationStage
(config) {}
evaluation_stage.cc
24
bool
EvaluationStage
::Init(
46
bool
EvaluationStage
::ProcessExpectedTags(
77
EvaluationStage
::process_class_to_factory_map_ =
evaluation_stage.h
33
class
EvaluationStage
;
35
typedef std::function<std::unique_ptr<
EvaluationStage
>(
42
// Every subclass of
EvaluationStage
will define its own behavior by specifying
44
class
EvaluationStage
{
46
// Initializes an
EvaluationStage
. Returns false if initialization failed,
52
// NOTE:
EvaluationStage
will not take ownership of any elements of
56
// An individual run of the
EvaluationStage
. Returns false if there was a
62
// NOTE: The
EvaluationStage
should maintain ownership of outputs it
72
static std::unique_ptr<
EvaluationStage
> Create(
94
virtual ~
EvaluationStage
() = default
[
all
...]
Completed in 643 milliseconds