Hacker News new | ask | show | jobs
by PaulHoule 2138 days ago
It's not so straightforward to go from a word representation to a query, sentence, or document representation.

If you come from the tfidf direction you can first tune up BM25 or something based on the ks-divergence, then you can use a random matrix, LDA, or the deep-network autoencoder that I worked on that crushed conventional tfidf vectors to 50-d vectors.

(Like many things people want to apply word vectors to, you go from 50% accuracy here to 70%, but we know it because we tested it on TREC gov2)

Today I'm interested in systems that have an input-to-action orientation and there you have to be able to put together a story like: "these 10 messages are parsed correctly and not by accident" and that requires that certain 'king/queen' inferences be done correctly or alternately the system has paths to recover from missing an inference.

Often there is no path to go from "popular models in the new A.I." to "something that can serve customers off the leash" and that's the problem.

Now I do like subword embeddings, but that just points out the problem that there is no such thing as a "word".

Let me justify that.

You can split up English into words like "some text".split() but it is not easy to do it from audio. Speech is punctuated by silences, often in the middle of words whenever you make a "[st]op" sound enough that separating words is equivalent to the whole speech understanding problem.

We can turn words into subwords and mash them together with subwords to make words. (e.g. "Fourthmeal", "Juneteenth", "Nihilego")

Also there are many cases you can replace a phrase with a word or a word with a phrase. Putting 'word' at the center of a model means the system is going to be in trouble w/ linguistic phenomena that happen 30% of the time.

1 comments

To expand on input/action thing I guess you have to deal with the issue of representation of opposites being similar in many representations.

That leads to parsing, which is... Ok a lot of the time and completely wrong sometimes, and it's difficult to know which is which.

I think that's one of the big problems in NLP still.