Exemple #1
0
 public SchemaShape GetOutputSchema(SchemaShape inputSchema) => _term.Append(_toSomething).GetOutputSchema(inputSchema);
Exemple #2
0
        public CategoricalTransform(TermEstimator term, IEstimator <ITransformer> toVector, IDataView input)
        {
            var chain = term.Append(toVector);

            _transformer = chain.Fit(input);
        }