Skip to content

Commit

Permalink
StructuredDataRegressor was missing some init variables documented (#899
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jcrodriguez1989 authored and haifeng-jin committed Jan 16, 2020
1 parent 9d43098 commit e4905f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autokeras/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,8 +688,12 @@ class StructuredDataRegressor(SupervisedStructuredDataPipeline):
be 'numerical' or 'categorical', indicating the type of that column.
Defaults to None. If not None, the column_names need to be specified.
If None, it will be inferred from the data.
output_dim: Int. The number of output dimensions. Defaults to None.
If None, it will infer from the data.
loss: A Keras loss function. Defaults to use 'mean_squared_error'.
metrics: A list of Keras metrics. Defaults to use 'mean_squared_error'.
name: String. The name of the AutoModel. Defaults to
'structured_data_regressor'.
max_trials: Int. The maximum number of different Keras Models to try.
The search may finish before reaching the max_trials. Defaults to 100.
directory: String. The path to a directory for storing the search outputs.
Expand Down

0 comments on commit e4905f5

Please sign in to comment.