6 ms·
Do you really, truly believe this problem is impossible to solve though? Even simple things make strides, eg: https://www.deepmind.com/publications/gophercite-t
by nmca 4y ago
Do you really, truly believe this problem is impossible to solve though? Even simple things make strides, eg: https://www.deepmind.com/publications/gophercite-teaching-language-models-to-support-answers-with-verified-quotes https://www.deepmind.com/publications/gophercite-teaching-la...
- PaulHoule 4y agoIf you've been involved in efforts to develop advanced technologies you might eventually encounter an https://en.wikipedia.org/wiki/Asymptote https://en.wikipedia.org/wiki/Asymptote which is described as a risk in great detail https://www.amazon.com/Friends-High-Places-W-Livingston/dp/0937063061 https://www.amazon.com/Friends-High-Places-W-Livingston/dp/0... it's quite a terrible risk because you often think "if only I double or triple the resources I apply to do this I'll get it." Really though you get from 90% there to 91% to 92% there.... You never get there because there is a structural mismatch between the problem you have and how you're trying to solve it. My take is that people have been too incredulous about the idea that you can just add more neurons and train harder and solve all problems... But if you get into the trenches and ask "why can't this network solve this particular task?" you usually do find structural mismatches. What's been exciting just recently (last month or so) are structurally improved models which do make progress beyond the asymptote because they are confronting https://www.businessballs.com/strategy-innovation/ashbys-law-of-requisite-variety/ https://www.businessballs.com/strategy-innovation/ashbys-law...
- mach1ne 4y agoCould you link some of these models? An interesting perspective that asymptote.
- PaulHoule 4y agoI first got involved in text classification in the early 00's and then the best you could do was "bag of word" models that counted the words in a document but didn't take the order of words into account. This works great if you asking a question "Is this paper about astrophysics?" because the vocabulary used in a document is closely linked to the topic. Pretty obviously though if you scramble the words in the document you can't reconstruct the original document, some information is lost, and there are some classification tasks that will reach an upper limit (asymptote) in accuracy because in taking the feature set you lost something. (If the task is "did the defendant commit the crime" the heuristic "Tyrone is a thug" works over bag-of-words, but there is no justice in that.) If that system is able to get the right answer for a case where the word order matters, it just got lucky. You might think "wouldn't it be better to use pairs of words?" but then you run into another problem. You might have a vocabulary of 2,000-20,000 words and get a somewhat useful sample of all of those in a few thousand documents. The number of word pairs is the square of the number of words and you just can't get enough training samples to sample all the possible word pairs. Sentiment analysis was an early area where bag-of-words broke down because I am happy and I am not happy mean very different things. You'd think now that adjectives like "happy" really are special and so is the word "not" and we could make the system somehow realize that "not X" means the opposite of X. You run into an asymptote situation there because there are a huge number of possible negation patterns, for instance you can say I can't say that I am happy and you can't even say "the negation structure has to be within ten words of the adjective" because there is no limit for how complex nested structures can get in language. The first few patterns you add "not X" raise the performance potential of the system a lot but patterns you add after that each make a smaller and smaller contribution to the performance and you again reach an asymptote. Today we have all kinds of embeddings and they are a step forward but they also run into the risk of throwing critical information away, and in a multi-step system you are doomed if an early step does that. I've walked away from some projects where people required high accuracy and they were stuck on using word embeddings that would never attain it. You can think about information loss in embeddings the same way as you do with simpler features except it is a lot more complicated and a lot of people look away instead of confronting the problem.