I use PostgreSQL as an SQL Server to store the datasets used to train models in Weka (machine learning tool).
Weka then reads the table, creating a function from each column. For this project, the data consists of 24x35 px images, where each pixel is a function. So I need to create a table with 841 columns (840 pixel values, 1 id (primary key)).
Images are grayscale images. Therefore, each pixel value varies from 0 to 255. Therefore, I want to either save it as one unit per pixel / column, or one byte per pixel / column. However, the "id" -column must be an integer.
What is the best / easiest way to set up a table of this size?
user2457516
source
share