Class: TensorStream::Evaluator::OutputGroup
- Inherits:
-
Object
- Object
- TensorStream::Evaluator::OutputGroup
- Defined in:
- lib/tensor_stream/evaluator/base_evaluator.rb
Instance Attribute Summary collapse
-
#data_types ⇒ Object
Returns the value of attribute data_types.
-
#outputs ⇒ Object
Returns the value of attribute outputs.
Instance Method Summary collapse
-
#initialize(outputs = [], data_types = []) ⇒ OutputGroup
constructor
A new instance of OutputGroup.
Constructor Details
#initialize(outputs = [], data_types = []) ⇒ OutputGroup
Returns a new instance of OutputGroup.
6 7 8 9 |
# File 'lib/tensor_stream/evaluator/base_evaluator.rb', line 6 def initialize(outputs = [], data_types = []) @outputs = outputs @data_types = data_types end |
Instance Attribute Details
#data_types ⇒ Object
Returns the value of attribute data_types.
5 6 7 |
# File 'lib/tensor_stream/evaluator/base_evaluator.rb', line 5 def data_types @data_types end |
#outputs ⇒ Object
Returns the value of attribute outputs.
5 6 7 |
# File 'lib/tensor_stream/evaluator/base_evaluator.rb', line 5 def outputs @outputs end |