Auto-Keras 是一個開源的自動機器學習庫。Auto-Keras 的終極目標是允許所有領域的只需要很少的數據科學或者機器學習背景的專家都可以很容易的使用深度學習。Auto-Keras 提供了一系列函數來自動搜索深度學習模型的網絡和超參數。
安裝:
pip install autokeras
樣例:
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/autokeras
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.