简体   繁体   中英

How to prepare this data for the LSTM? (input_shape)

I have a large dataset, similar to the following:

Time Measurement Result
1    3.5         1
2    -5.0        2
3    3.0         1
4    3.2         5
5    -2.0        2 

I drop the time column because it is uniform, and then, i intend to correlate the Measurement to the Result, using a LSTM model, but mostly of the guides and tutorials in the internet uses the Measurement to forecast a future Measurement, so how can i prepare this data to given Measurement it tries to determine the Result?

Maybe you can try indexing by measurement first.

df.set_index('Measurement',inplace=True)

Then you fit your model Finally, during prediction, you can use

input_values=df['measurement']

do the prediction Hope this helps

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM