Data collection and exploratory analysis

As stated earlier, we will utilize historical stock data for training our LSTM network. The dataset has one minute OHLC data from 506 different securities for the period of January 2016 to December 2016. Let's take a look at the data we'll be using:

//DataPreview.javaSparkSession spark = SparkSession.builder().master("local").appName("StockPricePredictor").getOrCreate();spark.conf().set("spark.sql.crossJoin.enabled", "true");//enables cross joining across Spark DataFrames// load data from csv fileString filename = "data/prices-split-adjusted.csv"; Dataset<Row> data = spark.read().option("inferSchema", false).option("header", true)       .format("csv").load(filename)             .withColumn("openPrice", functions.col ...

Get Java Deep Learning Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.