Build regression model in Keras

I introduced Keras in mishimasyk#9. And my presentation was how to build classification model in Keras. A participant asked me that how to build regression model in Keras. I could not answer his question. After syk#9, I searched Keras API and found good method. Keras has Scikit-learn API. The API can build regression model. ;-)Continue reading “Build regression model in Keras”

RemoteMonitor in keras

There are several packages to perform deep learning in python. And my favorite one is keras. https://keras.io/ Today, I found new function in keras.callbacks named RemoteMonitor. The function provide real time visualization of learning. So, I wrote very simple example using IRIS dataset. At first to use RemoteMonitor, I need clone api from following URL.Continue reading “RemoteMonitor in keras”