Hi there! I’m following the example that reads in a pandas dataframe using FeatureSpace in Structured data classification with FeatureSpace - the example works out of the box. I am now trying to modify the example:
One of my dataframe columns has text that I am sending to OpenAI’s embeddings endpoint and it returns a length 1536 float list. I want to ingest this float list into Keras. One idea is to create 1536 new float columns in the dataframe and ingest each of these columns into keras. Is that the proper way to do it? Or is there a way to ingest a column that is a list of floats? Thank you!