예제 #1
0
 public OutColumn(Vector <float> input, string modelFile)
     : base(new Reconciler(modelFile), input)
 {
     Input = input;
 }
예제 #2
0
 private ScalarOrVector(PipelineColumn col) : base(col)
 {
 }
예제 #3
0
 private protected ScalarOrVectorOrVarVector(PipelineColumn col)
 {
     _wrappedColumn = col;
 }
예제 #4
0
 public OutColumn(Vector <float> input, TensorFlowModelInfo tensorFlowModel)
     : base(new Reconciler(tensorFlowModel), input)
 {
     Input = input;
 }
예제 #5
0
 public ImplVarVector(PipelineColumn input, Config config) : base(Rec.Inst, input)
 {
     Input  = input;
     Config = config;
 }
 public OutScalar(Scalar <TValue> input)
     : base(Reconciler.Inst, input)
 {
     Input = input;
 }
 public OutVarVectorColumn(VarVector <TValue> input)
     : base(Reconciler.Inst, input)
 {
     Input = input;
 }
예제 #8
0
 private protected ScalarOrVectorOrVarVector(PipelineColumn col)
 {
     Contracts.CheckValue(col, nameof(col));
     WrappedColumn = col;
 }
예제 #9
0
 public OutColumn(Vector <float> input, Func <DnnImageFeaturizerInput, EstimatorChain <ColumnCopyingTransformer> > modelFactory)
     : base(new Reconciler(modelFactory), input)
 {
     Input = input;
 }
예제 #10
0
 public OutVectorColumn(Vector <Key <TKey, TValue> > input)
     : base(Reconciler.Inst, input)
 {
     Input = input;
 }
예제 #11
0
 public OutScalarColumn(Key <TKey, TValue> input)
     : base(Reconciler.Inst, input)
 {
     Input = input;
 }
예제 #12
0
 public OutKeyColumn(Key <TOuterKey, Key <TInnerKey> > input)
     : base(Reconciler.Inst, input)
 {
     Input = input;
 }