gitextract_87bybot9/ ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ └── setup.sh ├── .dockerignore ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── custom.md │ │ ├── feature_request.md │ │ └── new-task-template.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ └── actions.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE.md ├── autokeras/ │ ├── __init__.py │ ├── adapters/ │ │ ├── __init__.py │ │ ├── input_adapters.py │ │ ├── input_adapters_test.py │ │ ├── output_adapters.py │ │ └── output_adapters_test.py │ ├── analysers/ │ │ ├── __init__.py │ │ ├── input_analysers.py │ │ ├── input_analysers_test.py │ │ ├── output_analysers.py │ │ └── output_analysers_test.py │ ├── auto_model.py │ ├── auto_model_test.py │ ├── blocks/ │ │ ├── __init__.py │ │ ├── basic.py │ │ ├── basic_test.py │ │ ├── heads.py │ │ ├── heads_test.py │ │ ├── preprocessing.py │ │ ├── preprocessing_test.py │ │ ├── reduction.py │ │ ├── reduction_test.py │ │ ├── wrapper.py │ │ └── wrapper_test.py │ ├── conftest.py │ ├── engine/ │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── adapter_test.py │ │ ├── analyser.py │ │ ├── analyser_test.py │ │ ├── block.py │ │ ├── block_test.py │ │ ├── head.py │ │ ├── head_test.py │ │ ├── hyper_preprocessor.py │ │ ├── io_hypermodel.py │ │ ├── named_hypermodel.py │ │ ├── node.py │ │ ├── node_test.py │ │ ├── preprocessor.py │ │ ├── serializable.py │ │ ├── tuner.py │ │ └── tuner_test.py │ ├── graph.py │ ├── graph_test.py │ ├── hyper_preprocessors.py │ ├── hyper_preprocessors_test.py │ ├── integration_tests/ │ │ ├── __init__.py │ │ ├── functional_api_test.py │ │ ├── io_api_test.py │ │ └── task_api_test.py │ ├── keras_layers.py │ ├── keras_layers_test.py │ ├── nodes.py │ ├── nodes_test.py │ ├── pipeline.py │ ├── pipeline_test.py │ ├── preprocessors/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── common_test.py │ │ ├── encoders.py │ │ ├── encoders_test.py │ │ ├── postprocessors.py │ │ └── postprocessors_test.py │ ├── tasks/ │ │ ├── __init__.py │ │ ├── image.py │ │ ├── image_test.py │ │ ├── structured_data.py │ │ ├── structured_data_test.py │ │ ├── text.py │ │ └── text_test.py │ ├── test_utils.py │ ├── tuners/ │ │ ├── __init__.py │ │ ├── bayesian_optimization.py │ │ ├── greedy.py │ │ ├── greedy_test.py │ │ ├── hyperband.py │ │ ├── hyperband_test.py │ │ ├── random_search.py │ │ ├── random_search_test.py │ │ ├── task_specific.py │ │ └── task_specific_test.py │ └── utils/ │ ├── __init__.py │ ├── data_utils.py │ ├── data_utils_test.py │ ├── io_utils.py │ ├── layer_utils.py │ ├── types.py │ ├── utils.py │ └── utils_test.py ├── benchmark/ │ ├── README.md │ ├── __init__.py │ ├── datasets/ │ │ ├── titanic_test.csv │ │ └── titanic_train.csv │ ├── experiments/ │ │ ├── __init__.py │ │ ├── experiment.py │ │ ├── image.py │ │ ├── structured_data.py │ │ └── text.py │ ├── performance.py │ └── run.py ├── codecov.yml ├── docker/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devel.Dockerfile │ ├── pre-commit.Dockerfile │ └── pre_commit.py ├── docs/ │ ├── README.md │ ├── autogen.py │ ├── ipynb/ │ │ ├── customized.ipynb │ │ ├── export.ipynb │ │ ├── image_classification.ipynb │ │ ├── image_regression.ipynb │ │ ├── multi.ipynb │ │ ├── structured_data_classification.ipynb │ │ ├── structured_data_regression.ipynb │ │ ├── text_classification.ipynb │ │ └── text_regression.ipynb │ ├── keras_autodoc/ │ │ ├── __init__.py │ │ ├── autogen.py │ │ ├── docstring.py │ │ ├── examples.py │ │ ├── gathering_members.py │ │ ├── get_signatures.py │ │ └── utils.py │ ├── mkdocs.yml │ ├── py/ │ │ ├── customized.py │ │ ├── export.py │ │ ├── image_classification.py │ │ ├── image_regression.py │ │ ├── multi.py │ │ ├── structured_data_classification.py │ │ ├── structured_data_regression.py │ │ ├── text_classification.py │ │ └── text_regression.py │ ├── requirements.txt │ ├── run_py_files.sh │ ├── templates/ │ │ ├── about.md │ │ ├── index.md │ │ ├── install.md │ │ ├── stylesheets/ │ │ │ └── extra.css │ │ └── tutorial/ │ │ ├── faq.md │ │ └── overview.md │ └── tutobooks.py ├── examples/ │ ├── automodel_with_cnn.py │ ├── celeb_age.py │ ├── cifar10.py │ ├── imdb.py │ ├── mnist.py │ ├── new_pop.py │ └── reuters.py ├── pyproject.toml ├── setup.cfg └── shell/ ├── contributors.py ├── contributors.sh ├── copyright.txt ├── cov.sh ├── coverage.sh ├── docs.sh ├── format.sh ├── generate_json.js ├── lint.sh ├── perf.sh ├── pre-commit.sh └── pypi.sh