Computers can simulate everything from visual character recognition to mouse movements and everything else we do online. My prediction is that Google will one day enter the "Bot Recognition Market". They've got so much data on everyone and their browsing habits from Gmail, to Adsense, to Search results, to Google Analytics. Their cookies, browser, javascript, and ads follow you around all over the internet. They're t…
AI Startup Says It Has Defeated Captchas
31–40 of 82 posts
Re: AI Startup Says It Has Defeated Captchas
#32Not surprised. Not to be cavalier or anything, but I mean, even I was about to start a side-project to solve those things.
Awesome! It would be amazing if you open sourced your own solutions for it so we could learn from you- I find the topic fascinating! :-)
Re: AI Startup Says It Has Defeated Captchas
#33> or let you know how many calories you’re about to eat by looking at your lunch. I have previously told some people that this is the holy grail of dieting apps. The difference in ease of use between entering all of the items in your meal, one by one, and just taking a photo, would be a game changer. Of course, this is just a throwaway example in the article so they probably haven't done any of the work that would be…
The hard part about this problem is getting the scale and thus volume of the objects right. How big is that bowl holding your cereal?
Re: AI Startup Says It Has Defeated Captchas
#34While the modern Machine Learning Movement makes sense in a historical context and is a reasonable reaction to the disappointing returns from symbolic inference during the early days of AI research, it is terrifying that the research community is satisfied to rely on big data and statistical methods to carry us forward.
Few among us recognize the need to prioritize the study of the human brain. Even fewer are placing their bets on intelligent computer systems seeded with neurologically-inspired designs.
Vicarious gets it.
How long before others see the writing on the wall?
Now is the time to stop reacting. Now is the time to consider the field in a broad context and develop a balanced, holistic approach.
Consider this a wake-up call.
Re: AI Startup Says It Has Defeated Captchas
#35Earlier quoted context omitted.
The hard part about this problem is getting the scale and thus volume of the objects right. How big is that bowl holding your cereal?
Do the same as humans do : it's 25cl ... point. You won't be far off the mark.
Re: AI Startup Says It Has Defeated Captchas
#36It'd be interesting to know more about this approach. In particular: > One big difference in Vicarious’s approach, says cofounder Dileep George, is that its system can be trained with moving images rather than only static ones. Does this imply they teach it how the shapes of numbers change, for easier detection?
This is one of the things people don't often realize you can do with algorithms. You don't need to look at the world the way it actually really exists, and there may be very good reasons not to. Training algorithms to actually recognize moving images is incredibly hard, because it requires things like memory, fade-outs, recurrent networks, all that very advanced stuff. Obviously time exists as a continuum in the "real" world. But that's bloody inconvenient. So just look at big "quanta" of time, collecting all data points during the quantum, analyse it, then shift the quanta/window ahead 0.1s and do the exercise again. This is so much easier you wouldn't believe it.
Teaching an algorithm to recognize, say, a car collision, given 100 frames. It doesn't require any change to the algorithm (just a change in training data). And obviously your backend system needs to be aware that, over time, the "isColliding" output will look like ......1.....11.....1111...1111.1.1.111.11..11...11.11...11...1.....1...1...... when a collision occurs and this of course doesn't mean you've had 20 collisions.
It does mean a bigger network, slower training, and more resources needed. But not as much as you'd think. Keep in mind that a "temporal" network will need more hidden layers. Also please consider building "redundant" networks for temporal data. When people ask why, I have no better answer than that it's the same technique our brain uses, so frankly if it's good enough for God, it's good enough for me.
Doing the temporal thing means you're back to using trivially simple algorithms, running on more data.
Cracking captcha's is not very impressive. I've done it as a weekend project, and exceeding "average" human captcha'ing ability is easy. I actually got it to the point where my algorithm was slightly better at captcha's than me, where I was allowed to take 2 minutes for difficult captchas. If I wasn't allowed to take more than 10 seconds, my algorithm easily beat me by over 10% (my captcha performance, when measured, shockingly is only ~83%). I didn't cheat : I used an external site's captchas (from dns.be).
The algorithm used was dead simple backpropagation.
Re: AI Startup Says It Has Defeated Captchas
#37Earlier quoted context omitted.
The hard part about this problem is getting the scale and thus volume of the objects right. How big is that bowl holding your cereal?
And is that Coke or Diet Coke?
But it'd be useful for rough estimates for things like restaurant meals, with the aid of a menu.
Re: AI Startup Says It Has Defeated Captchas
#38As far as I know bots, even advanced ones, have an extremely hard time with dotted fonts. Just change the Captchas to use some really dotted or unique fonts where the letters are made up of smaller elements that don't connect. You can extend the life of Captchas for a few more years. http://fontspace.com/malwin-b%C3%A9la-h%C3%BCrkey/merkur http://fontspace.com/honey-and-death/dotline/8617.charmap http://fontspace.com…
Love your optimism. I'd like to say that captchas are very limited : they have to be solvable by idiot humans. Captcha algorithms have no such limits they have to abide by. Since the anti-spam side of things is blocked at a certain point in the arms race, the other side is bound to win.
Why not just require, say, a google or facebook login and transfer the "eliminate spammers" problem onto them ?
Re: AI Startup Says It Has Defeated Captchas
#39Earlier quoted context omitted.
Do the same as humans do : it's 25cl ... point. You won't be far off the mark.
You probably will be far off the mark. I realized once I started tracking my food seriously that 1) those glasses I have that I though were substantially bigger than those other glasses? They held the exact same amount; 2) the amount of calories I consume could easily vary by 30% or more depending on how full I'd fill my various glasses, plates or food containers.
Re: AI Startup Says It Has Defeated Captchas
#40So they have invented the world's best OCR software?
They state a captcha solving rate of around 90%.
For OCR to be cost-competitive, you typically need it to be correct on about 98% of characters or more; below that and it is typically cheaper to have a human typing in the text than to have a human correct OCR'd text.
Modern OCR engines typically do better than 99% on text that isn't really badly damaged (my MSc. dissertation was on error correction in OCR, and as part of that I tested some engines with pages that had been crumpled, intentionally damaged with sand and liquids, and even then many of the engines managed more than 99%).