How to implement this NN architect using tensoflow?
问题 I am new in this domain perhaps thats why i am confusing things. I am unable to get the required results as it shows very low accuracy which means i am doing it wrong. import sklearn import pandas as pd from keras.models import Sequential from keras.layers import Dense from keras.layers import LSTM import matplotlib.pyplot as plt import sklearn.model_selection from tensorflow.keras import layers data= pd.read_csv("u.csv") #print(data.head()) plt.plot(data) plt.show() import tensorflow x=data