Author: user
-
Preparing the data
Data processing started with identifying the data structure setup by Node-RED. Node-RED being built on Node.js means the default method of data interaction will be with JSON. Luckily, there is a native JSON interpreter for Python which make data loading easy! Parsing the file is quick and easy, and loads the data file as a…
-
Data Collection in a Nutshell
One of the more important aspects of machine learning is the abundance of data. For our SolarCast-ML project, we implemented a custom data collection setup based on AWS and S3. Essentially, we used a custom post request from our weather condition collection device to first post to Node-RED, then use the blocks in Node-RED to…