Can Blue Gene pass the Turing test with some Star Trek help?

newsguy 0 Tallied Votes 368 Views Share

A rather interesting article in the EETimes suggests that the holy grail of artificial intelligence, the ability to pass the Turing Test, may become a reality later this year courtesy of a collaboration between IBM and the Rensselaer Polytechnic Institute.

The Turing Test was first described by Alan Turing back in 1950, and requires a human being acting as a judge to hold a natural language conversation with a machine and with another human being and not be able to tell which is which. So far, no machine has been able to pass this simple test.

But now the AI experts at RPI reckon that by using the IBM Blue Gene, the fastest computer in the world, they can crack it before the year is out.

The secret would appear to be Star Trek. Or at least the fact that the AI team have been working on a Star Trek-alike holodeck system. The team are creating a synthetic character with a back story, a huge knowledge base that includes such things as education, upbringing, family and so on. "We want to engineer, from the start, a full-blown intelligent character and converse with him in an interactive environment like the holodeck from Star Trek" says the leader of the research project, and head of the RPI Cognitive Science Department, Selmer Bringsjord. The team reckon that they have the intelligence algorithm sorted and juts need to couple it to a supercomputer of the Blue Gene ilk in order to get the real time performance that would enable it to beat the Turing test.

Sounds logical, captain…

Dani AI

Generated

Good catch, — pairing a carefully engineered persona with a lot of compute can make conversations feel smoother, but a believable interlocutor is more than raw speed. The Turing test is heavily dependent on test conditions (text only vs. multimodal, judge instructions, time per session) and on how well the system manages continuity, uncertainty, and small human quirks. Those design details matter far more than whether the box running it is the fastest one on the planet.

What the thread has not drilled into is a practical checklist for building a Turing-candidate that actually convinces people:

  • Persona engineering: a compact, indexed biography (facts, opinions, idiosyncrasies) so replies are consistent and retrievable.
  • Memory and continuity: short-term context + persistent facts, with consistency checks to avoid contradictions.
  • Error modeling: intentional hesitations, filler tokens, and occasional uncertain answers reduce uncanny precision.
  • Response pipeline: layered retrieval/templates + generative fallback, with confidence thresholds and graceful ignorance instead of hallucination.
  • Grounding: use the virtual environment to provide sensory hooks (it is easier to be convincing when replies reference shared context).
  • Evaluation protocol: multiple independent judges, blind A/B, and archived transcripts for reproducibility.

A minimal response pipeline in pseudocode:

input = read_user()
intent, entities = parse(input)
context = update_context(intent, entities)
memory = fetch_related_facts(context)
if factual and confident(memory):
  response = answer_from_memory()
else if chit_chat(context):
  response = template_persona_reply()
else:
  response = generate_with_model(context)
response = apply_persona_voice(response)
deliver(response)

And to : making the character "he" or "she" is a deliberate design choice, not a technical necessity — gender cues change judge expectations, so test neutral or multiple personas. Finally, passing a particular Turing-style setup is a milestone in impression management, not a proof of general intelligence; reproducible tests and published transcripts are what make such claims meaningful.

jephthah 1,888 Posting Maven

converse with him

now see, this is how i know this is bulls---. you got a bunch of star-trek-watching computer AI tech geeks working on creating an artificial humanoid in a sort of "holodeck" environment...

... and it's gonna be a HE???

i'm callin' shenanigans.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.