PoolLoadParams

class catboost_spark.PoolLoadParams(delimiter='\t', hasHeader=None)[source]

Bases: pyspark.ml.wrapper.JavaParams

Parameters
delimiterstr, default: ” “

The delimiter character used to separate the data in the dataset description input file.

hasHeaderbool

Read the column names from the first line of the dataset description file if this parameter is set.

Methods Summary

getDelimiter()

Returns

getHasHeader()

Returns

setDelimiter(value)

Parameters

setHasHeader(value)

Parameters

setParams([delimiter, hasHeader])

Set the (keyword only) parameters

Methods Documentation

getDelimiter()[source]
Returns
str

The delimiter character used to separate the data in the dataset description input file.

getHasHeader()[source]
Returns
bool

Read the column names from the first line of the dataset description file if this parameter is set.

setDelimiter(value)[source]
Parameters
valuestr

The delimiter character used to separate the data in the dataset description input file.

setHasHeader(value)[source]
Parameters
valuebool

Read the column names from the first line of the dataset description file if this parameter is set.

setParams(delimiter='\t', hasHeader=None)[source]

Set the (keyword only) parameters

Parameters
delimiterstr, default: ” “

The delimiter character used to separate the data in the dataset description input file.

hasHeaderbool

Read the column names from the first line of the dataset description file if this parameter is set.