Auto-Keras 是一個開源的自動機器學習庫。Auto-Keras 的終極目標是容許全部領域的只須要不多的數據科學或者機器學習背景的專家均可以很容易的使用深度學習。Auto-Keras 提供了一系列函數來自動搜索深度學習模型的網絡和超參數。git
安裝:github
pip install autokeras網絡
樣例:dom
import autokeras as ak
clf = ak.ImageClassifier()
clf.fit(x_train, y_train)
results = clf.predict(x_test)機器學習
官方網站: http://autokeras.com/
開源項目: https://github.com/jhfjhfj1/autokeraside
Auto-Keras is an open source software library for automated machine learning (AutoML). The ultimate goal of AutoML is to allow domain experts with limited data science or machine learning background easily accessible to deep learning models. Auto-Keras provides functions to automatically search for architecture and hyperparameters of deep learning models.函數