An open API service indexing awesome lists of open source software.

https://github.com/bolkedebruin/autokeras_tabular

Autokeras Tabular extension
https://github.com/bolkedebruin/autokeras_tabular

Last synced: about 2 months ago
JSON representation

Autokeras Tabular extension

Awesome Lists containing this project

README

          

# 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]](https://github.com/bolkedebruin/autokeras_tabular/tree/master/examples/task_modules/tabular)

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.)

```python
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` .