Earlier quoted context omitted.
Errors in precision and accuracy.
Hmm... there is no doubt about the sensor input, the elephant is there. The issue is with precision and accuracy of the model itself. Edit: I need to rephrase, the interesting case for me ( and the one the article is describing) is when the model fails with accurate input data due to assumptions that are intrinsic to the model itself.
Machine Learning Confronts the Elephant in the Room
71–80 of 116 posts
Re: Machine Learning Confronts the Elephant in the Room
#72Re: Machine Learning Confronts the Elephant in the Room
#73Earlier quoted context omitted.
Try this one : https://i.ytimg.com/vi/I11Vlcpz3jc/hqdefault.jpg I tried it on a couple of online demos, neither spotted that there was a car in the picture.
Is a car still a car if it's taken out of context? To us, yes. To an AI, it might not matter. A space collision avoidance AI that identifies a road vehicle as a road vehicle and expects it to behave as one normally behaves would create problems. A human can look at a 1936 Ford truck floating in space and know it's not going to make a sudden left turn. An AI working in space would still treat it as debris if a human t…
Re: Machine Learning Confronts the Elephant in the Room
#74Earlier quoted context omitted.
> a low confidence score Neural nets should return a low confidence score. But, the popular approach (described below) ignores that. Neural nets ignore confidence because of a technique called softmax [1]. This happens as the final operation of a neural net, and is required for training. Softmax is a tool to make an array of positive numbers look like a probability distribution: out = x / x.sum() x[i] is a class pred…
Is this what softmax is? Simply dividing a vector by sum of its components? If so, then how does it deserve a name , not to mention a long Wikipedia page full of formulas?
Re: Machine Learning Confronts the Elephant in the Room
#75Earlier quoted context omitted.
> a low confidence score Neural nets should return a low confidence score. But, the popular approach (described below) ignores that. Neural nets ignore confidence because of a technique called softmax [1]. This happens as the final operation of a neural net, and is required for training. Softmax is a tool to make an array of positive numbers look like a probability distribution: out = x / x.sum() x[i] is a class pred…
Is this what softmax is? Simply dividing a vector by sum of its components? If so, then how does it deserve a name , not to mention a long Wikipedia page full of formulas?
Re: Machine Learning Confronts the Elephant in the Room
#76Earlier quoted context omitted.
Try this one : https://i.ytimg.com/vi/I11Vlcpz3jc/hqdefault.jpg I tried it on a couple of online demos, neither spotted that there was a car in the picture.
Is a car still a car if it's taken out of context? To us, yes. To an AI, it might not matter. A space collision avoidance AI that identifies a road vehicle as a road vehicle and expects it to behave as one normally behaves would create problems. A human can look at a 1936 Ford truck floating in space and know it's not going to make a sudden left turn. An AI working in space would still treat it as debris if a human t…
Re: Machine Learning Confronts the Elephant in the Room
#77Re: Machine Learning Confronts the Elephant in the Room
#78I am not an expert in AI/ML, just a casual observer, but I didn't like the tone of the article. Not only it fixates on the speed of processing, it also seems smug and acts as if we know how human brain sees and processes images, while all we have is a bunch of conjectures. That was distracting.
Re: Machine Learning Confronts the Elephant in the Room
#79Second, even many people are surprisingly bad at decoding incongruous scenes, which is why hidden object games are a thing.
Re: Machine Learning Confronts the Elephant in the Room
#80Earlier quoted context omitted.
> a low confidence score Neural nets should return a low confidence score. But, the popular approach (described below) ignores that. Neural nets ignore confidence because of a technique called softmax [1]. This happens as the final operation of a neural net, and is required for training. Softmax is a tool to make an array of positive numbers look like a probability distribution: out = x / x.sum() x[i] is a class pred…
Note that you can get a form of confidence by just not applying softmax to the output during inference. Softmax is primarily to aid in training.