Skip to content

bolkedebruin/autokeras_tabular

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Autokeras Tabular

Tabular support was removed by the Autokeras authors without a replacement. This reinstates the module. It should work exactly the same as before except you will need to import from autokeras_tabular.

Automated tabular classifier tutorial. [source]

Class TabularClassifier and TabularRegressor are designed for automated generate best performance shallow/deep architecture for a given tabular dataset. (Currently, theis module only supports lightgbm classifier and regressor.)

    clf = TabularClassifier(verbose=True)
    clf.fit(x_train, y_train, time_limit=12 * 60 * 60, data_info=datainfo)
  • x_train: string format text data
  • y_train: int format text label
  • data_info: a numpy.array describing the feature types (time, numerical or categorical) of each column in x_train.

Notes: Preprocessing of the tabular data:

  • Class [TabularPreprocessor] involves several automated feature preprocessing and engineering operation for tabular data . *The input data should be in numpy array format for the class TabularClassifier and TabularRegressor .