Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Check their work or check the summary? (Score 2) 486

And this is why we should not teach CS101 in Java or Python. If they'd been forced to use C this whole experiment would have turned out differently.

Not at all. If you wrote your C in memory string handling as stupidly as they wrote the Python and Java you will still get worse performance in C (e.g. each iteration malloc a new string and then strcpy and strcat into it, and free the old string; compared to buffered file writes you'll lose). It's about failing to understand how to write efficient code, not about which language you chose.

Privacy

Google: Our New System For Recognizing Faces Is the Best 90

schwit1 writes Last week, a trio of Google researchers published a paper on a new artificial intelligence system dubbed FaceNet that it claims represents the most accurate approach yet to recognizing human faces. FaceNet achieved nearly 100-percent accuracy on a popular facial-recognition dataset called Labeled Faces in the Wild, which includes more than 13,000 pictures of faces from across the web. Trained on a massive 260-million-image dataset, FaceNet performed with better than 86 percent accuracy.

The approach Google's researchers took goes beyond simply verifying whether two faces are the same. Its system can also put a name to a face—classic facial recognition—and even present collections of faces that look the most similar or the most distinct.
Every advance in facial recognition makes me think of Paul Theroux's dystopian Ozone.

Comment Re:As an Engineer/Journeyman Machinist I can tell (Score 1) 188

Or.........
as a computer scientist you could look into the field of evolutionary algorithms, discover that evolution is an applied science used by half of Fortune 500 companies, discover how evolution does work, and write your own code and witness first hand that evolution works.

-

Comment Re: Salem Hypothis: Be careful not to paint with (Score 1) 188

Let's say 30% of the population are creationists.
Let's say 10% of Engineers are creationists, because creationists are less likely to pursue the field and/or because their education convinced them to no longer be creationists.
Let's say 1% of scientists are creationists, because creationists are less likely to pursue the field and/or because their education convinced them to no longer be creationists.

Result: Any creationist claiming to have a "science degree" has something like a 90% chance of turning out to have an engineering degree.... even though engineers are unlikely to be creationists.

That's the Salem Hypothesis. Creationists claiming science degrees tend to be engineers, even though engineers tend not to be creationists.

-

Comment Re:This guy has a better idea (Score 1) 221

How about using supercapacitors to convert 5 seconds of 60kW into 15 seconds of 20kW (less losses)?

5 seconds of 60kW = 300kJ. Supercapacitor energy densities are in the range 0.5 to 15 W-hour/kg according to Wikipedia. Say 5 Wh/kg, = 18000 J/kg, so you'd only need a few kg of supercapacitor to make this work. The only price I find is US$2.85 per kJ in 2006, putting the cost at around $1000, probably much less now (but there will also be costs beyond just the supercapacitor.)

You could also make this an option - not much point paying $2000 for this capability if the car is going to be in Singapore.

Slashdot Top Deals

To do nothing is to be nothing.

Working...