65 Comments
User's avatar
тна Return to thread
regev's avatar

We have actually built this machine :)

Flexor.ai

Benn Stancil's avatar

What does "delivering textual data into the hands of every data practitioner" mean though?

regev's avatar

We enable running sql queries from your warehouse/bi tool

That run on your entire textual data source.

For example:

SELECT

*

FROM (

SELECT

EMAIL_CONTENT,

EMAIL_TIMESTAMP,

FLEX(FLEXOR_ID, 'Is the client flagging an error on an invoice?') AS invoice_error,

FROM

Emails_table

)

WHERE

invoice_error_prediction = true

Benn Stancil's avatar

My main question with that is, does that allow you to "parse" text data (eg, is this a comment about an iphone?; what's the sentiment of this comment; etc) or can you aggregate is as well (eg, summarize all of these comments; of this set of comments, find me the most representative one)?

The first one seems useful but not *that* novel, whereas the second one is something I've never seen before.