#-*- coding: utf-8 -*- # pylint: disable=E1101 from random import shuffle import matplotlib.pyplot as plt import pandas as pd from keras.layers.core import Activation, Dense from keras.models import Sequential from scipy.interpolate import lagrange from sklearn.externals import joblib from sklearn.m...