Skip to content

Instantly share code, notes, and snippets.

import tensorflow as tf
import pandas as pd
from sklearn.model_selection import train_test_split
from math import sqrt
class tfMLPRegressor():
'''
Class Implementing a MLP in TF for time series prediction.
'''
def __init__(self, X, y):