Megosztás a következőn keresztül:


TreeEnsembleFeaturizationTransformer.GetOutputSchema(DataViewSchema) Method

Definition

TreeEnsembleFeaturizationTransformer appends three columns to the inputSchema. The three columns are all Single vectors. The fist column stores the prediction values of all trees and its default name is "Trees". The second column (default name: "Leaves") contains leaf IDs where the given feature vector falls into. The third column (default name: "Paths") encodes the paths to those leaves via a 0-1 vector.

public override Microsoft.ML.DataViewSchema GetOutputSchema (Microsoft.ML.DataViewSchema inputSchema);
override this.GetOutputSchema : Microsoft.ML.DataViewSchema -> Microsoft.ML.DataViewSchema
Public Overrides Function GetOutputSchema (inputSchema As DataViewSchema) As DataViewSchema

Parameters

inputSchema
DataViewSchema

DataViewSchema of the data to be transformed.

Returns

DataViewSchema of the transformed data if the input schema is inputSchema.

Applies to