Show / Hide Table of Contents

Class XPSColumnSpec

Inheritance
object
XPSColumnSpec
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudNaturalLanguage.v2.Data
Assembly: Google.Apis.CloudNaturalLanguage.v2.dll
Syntax
public class XPSColumnSpec : IDirectResponseSchema

Properties

ColumnId

The unique id of the column. When Preprocess, the Tables BE will popuate the order id of the column, which reflects the order of the column inside the table, i.e. 0 means the first column in the table, N-1 means the last column. AutoML BE will persist this order id in Spanner and set the order id here when calling RefreshTablesStats and Train. Note: it's different than the column_spec_id that is generated in AutoML BE.

Declaration
[JsonProperty("columnId")]
public virtual int? ColumnId { get; set; }
Property Value
Type Description
int?

DataStats

The data stats of the column. It's outputed in RefreshTablesStats and a required input for Train.

Declaration
[JsonProperty("dataStats")]
public virtual XPSDataStats DataStats { get; set; }
Property Value
Type Description
XPSDataStats

DataType

The data type of the column. It's outputed in Preprocess rpc and a required input for RefreshTablesStats and Train.

Declaration
[JsonProperty("dataType")]
public virtual XPSDataType DataType { get; set; }
Property Value
Type Description
XPSDataType

DisplayName

The display name of the column. It's outputed in Preprocess and a required input for RefreshTablesStats and Train.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ForecastingMetadata

Declaration
[JsonProperty("forecastingMetadata")]
public virtual XPSColumnSpecForecastingMetadata ForecastingMetadata { get; set; }
Property Value
Type Description
XPSColumnSpecForecastingMetadata

TopCorrelatedColumns

It's outputed in RefreshTablesStats, and a required input in Train.

Declaration
[JsonProperty("topCorrelatedColumns")]
public virtual IList<XPSColumnSpecCorrelatedColumn> TopCorrelatedColumns { get; set; }
Property Value
Type Description
IList<XPSColumnSpecCorrelatedColumn>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX