True's beaked whale.jpg

Western spotted skunk

Hooded skunk

Yellow-throated Marten

Wolverine

Archive for September, 2005

How effcient is your brain?

Wednesday, September 28th, 2005

A high-end CPU these days uses nearly 100W of power. But it doesn’t have nearly the computing power of a human brain. AI is in good part, perhaps mainly, a software problem, but raw computing power seems lacking too. So how many of today’s CPUs would it take to build a computer with human intelligence? Say at least 10,000 Opterons.

This 10K CPU computer system would use 1MW of power. So how does that compare to a human brain? A person runs on 2000 Kcal / day.

At 86400 s / day this is 23 cal / s x 4.187 calories / J = 97 J / s. J / s are equal to Watts so this is 97 W.

Say 40% of the body’s energy is used by the brain. Then a person’s brain uses 40 W, as much a weak light bulb. Which is order-of-magnitude correct–your head is a little cooler than a weak bulb but the bulb is smaller.

So a human intelligent computer would use 1MW of power while a person’s brain uses 40W. The human brain is 25,000X more effcient than a computer. This says a few things about today’s computers. They are terribly inefficient, at least for the types of computations an AI needs to do. And today’s AI software design doesn’t capture the organization of biological computers. We have 1000 CPU systems today, and could build 10K CPU systems. But no system today is as clever as a mouse. Today’s AI may have crested the house fly brain goal post. But the lack is clearest in the hardware architecture.

Textbook prices

Monday, September 26th, 2005

Read an article by Confessions of a Community College Dean on Textbooks

Some students have been complaining about the price of textbooks for certain classes. Curious, I went to the bookstore and roamed the stacks, seeing just what they’re paying.

Wow.

The students are right. The costs are absurd.

Intro to [a popular foreign language] — $200.

He starts out getting it, then rambles on about how not much can be done by the College.

Come on now, why would an introductory language class *need* a new textbook? Language instruction changes very slowly. Why not pick the best from the last decade’s editions and use only used textbooks?

And your complaints about a system where the college buys the books seem poorly thought out. The *point* of such a system is to put the college in the crunch zone. And the college is better able to handle it–pressure publishers, reuse books, or pick inexpensive titles.

Tongue-eating bug

Thursday, September 1st, 2005

Here’s a picture from a story making the rounds because it turned up in a London fishmarket. It’s Cymothoa exigua, a fish parasite.

The 3.5cm creature had grabbed onto the fish’s tongue and slowly ate away at it until only a stub was left.

It then latched onto the stub and became the fish’s “replacement tongue”.

The bugs are usually found off the coast of California, so it’s possible the fish was imported to the UK.

Here are two pictures from the London story:

Cymothoa exigua
Cymothoa exigua #2

Here’s a pic from a web site about parasites:

Cymothoa exigua #3

Two pics from the Australian Museum:

Cymothoa exigua #4
Cymothoa exigua #5

Be glad you have hands to pull it off you if it bites your tongue. The poor fish is stuck–his fins can’t reach in and grab it!

Expression Profiler Next Generation install

Thursday, September 1st, 2005

I installed Expression Profiler Next Generation (EPNG) on my site. My interest is in canabalizing parts of it to show gene expression clusters. Turns out that part uses SVG which is a poor choice–SVG requires a browser plugin, a separate install, and isn’t even available for Mozilla/Firefox (the Adobe plugin for Netscape 4.x seems to work on the Mac, but not on the PC).

But on to EPNG… It’s a beast, a Frankenstein monster of code, composed of bits of a host of web technologies stitched together. It’s Perl based, which is what got me interested in it. And it has a database backend (Postgresql or Oracle, though I was able to port it to Mysql). And there’s some Javascript, everyone uses Javascript. But the developers were not content, they use gobs of Perl modules, including some that require libraries (PGPLOT), and a set of cirucular module requires (the stats modules)! R is used for the stats, that makes sense, and some R modules, and then SVG because the fewer users the better, and SVG/Javascript to take advantage of the SVG, and some Java, just to mix it up. And some AJAX is thrown in to pull in dataset histories.

So it’s a large and sprawling. I found it hard to install. Admittedly, I made it harder than expected by porting it to Mysql, but it was a pain even apart from that. Among the install joys are the release not working–the database schema doesn’t match the code! Boy that was a fun set of bugs to find.

And one of the modules required, XML::LibXML::SVG doesn’t exist! Google doesn’t know about it! It looks to be a private or temporary module, perhaps it got converted to SVG–most of the API and function is shared by the two. I converting the code to use SVG, but it was a huge bother!

Detailed EPNG install log.