Example #1
0
 public void OutputFloat(string output_name, float value)
 {
     float_streams_.Output(output_name, batch_size_, current_entry_, value);
 }
Example #2
0
 public void OutputInt(string output_name, int value)
 {
     int_streams_.Output(output_name, batch_size_, current_entry_, value);
 }
Example #3
0
 public void OutputBool(string output_name, bool value)
 {
     bool_streams_.Output(output_name, batch_size_, current_entry_, value);
 }