Skip to content

Instantly share code, notes, and snippets.

@Muhammad-Yunus
Created April 15, 2020 01:52
Show Gist options
  • Save Muhammad-Yunus/1462fe9366fbfedde6b47fafc2bb6ede to your computer and use it in GitHub Desktop.
Save Muhammad-Yunus/1462fe9366fbfedde6b47fafc2bb6ede to your computer and use it in GitHub Desktop.
MLP ODE Timeseries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
np.set_printoptions(suppress=True, precision=15)
#input sampling timeseries
n_sampling = 5
#define param
n = n_sampling
m = 6
M = 1
init_arr_item = 0.0
learning_rate = 0.001
TRAIN_ITER = 2000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment