Hey, ruX is here.

First experiments with ML using Keras

I'm still exploring the new world of machine learning.

Recently I discovered few interesting things about it:

Hence, I started experimenting with it. First of them was Prisma-like chat bot for Facebook which uses open source implementation of neural style transfer algorithm. Then I made AI-powered visa sponsored job search engine which discovers companies' websites and walk over job listings to extract vacancies. It uses CNN for binary classification to recognise job listings.

Unfortunately all these experiments didn't give me sense of how it works. If you even can tune hyperparameters for existing model it won't help you to build your own NN. Hence, I decided to start from the beginning

I started with very simple model which learns how to predict points on simple line built using y = x * 10. It's quite simple problem for you, isn't it? :) But the goal was to get sense how is it working

Did I get it? No. But it works :) You can find ipython notebook of my first experiment on github

Later on I made task more difficult_(seriously try to find right activation function!)_ using polynomial function of degree 3:

It looks dumb simple but not for one who never touched that area before in his late 27 :)

Other examples like gradient descent for unit circle and binary classifier for salary you can find on github's repo ruXlab/keras-experiments

Tools used:

Exit mobile version