What other features would you like to see?
PS: Suggest your wildest feature request.
1–5 of 5 posts
What other features would you like to see?
PS: Suggest your wildest feature request.
{
"date": "2020-10-09T06:00:00-0800",
"action": "flight",
"destination": {
"iataCode": "LAX",
"name": "Los Angeles International Airport"
},
"origin": {
"iataCode": "MIA",
"name": "Miami International Airport"
},
"airline": {
"iataCode": "DL",
"name": "Delta",
"url": "https://www.delta.com"
}
}
even better would be to parse it into schema.org entitiesThe key thing is that I don't want to have to decide in advance how I want to use the information. I just want to store the information that I know it might be useful or important later.
(More concretely, I could see this being a single huge text file in which I can make natural language queries; each query generates a view of the file that corresponds to selected sentences in the file that match the query. For example, if I asked "what are the things I have to do for next month", then it would show me the sentences that correspond to things I have to do for next month. If I queried "exciting ML papers", then it would show me the sentences in which I link or talk about an ML paper, and I sounded excited about it.)
It would be cool if raw text could be parsed into structured data. Something like "Yesterday at 6pm, I took a flight from MIA to LAX airport on Delta" could be parsed into: { "date": "2020-10-09T06:00:00-0800", "action": "flight", "destination": { "iataCode": "LAX", "name": "Los Angeles International Airport" }, "origin": { "iataCode": "MIA", "name": "Miami International Airport" }, "airline": { "iataCode": "DL", "na…
It would be cool if raw text could be parsed into structured data. Something like "Yesterday at 6pm, I took a flight from MIA to LAX airport on Delta" could be parsed into: { "date": "2020-10-09T06:00:00-0800", "action": "flight", "destination": { "iataCode": "LAX", "name": "Los Angeles International Airport" }, "origin": { "iataCode": "MIA", "name": "Miami International Airport" }, "airline": { "iataCode": "DL", "na…
How would you use this information?