This is a very Simple Machine Learning Example Implemented with Keras model. System simply classifies the data with it's sum, If the sum of integers given as data is greater than 10(i.e two digit) then it will classify as yes. Else it will classify as no.
Repository contains one .ipynb file and one dataset file mydataset.csv. The csv file contains 4 fields (3 intergers and a result).
Install all necessary libraries (check .ipynb import statements.)
You can test the program with your own inputs as follows : { p =estimator.predict(numpy.array([[x,y,z]],numpy.int32)) }. Enter values of 'x','y' and 'z'.