active questions tagged turing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T05:04:48Z http://stackoverflow.com/feeds/tag/turing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software 0 Feasibility of beating the Turing Test with modern software? Karl 2009-10-30T08:49:57Z 2009-10-30T13:05:57Z <p>I ask this academically, I want to ask aloud a very important question and have the community try to answer it. Can we build a system that generates a scene to play out along a live anonymous group video chatroom that can read the text typed at it and respond with a chatbot?</p> <p>Live Internet video is often blurry and has low resolution. One cannot make out many details in the scene of the distant party. Scenes can be rendered with modern software tools that look very real when not moving. Making them move realistically is a large piece of simulation software. </p> <p>Faces can be rendered at 24 frames per second by a cluster of 24 systems capable of 1 frame per second. The video would then have a 1 second lag from the point where the decision was made as to which facial expression to generate. These facial expressions and their generation is a key problem. The skin realism requirement is a solved problem by the graphics community.</p> <p>Facial expressions have been categorized by several researchers. They also can be rendered, this has been shown in modern computer graphics literature. We can do them if we can know which ones are appropriate for a given situation.</p> <p>Chatbots have been in use for decades. There exist now quite 'smart' chatting programs that will read what it is asked and reply in a sensible way. They have always done this with text, but text-reader software can speak out in a human-ish voice, and speech recognition software is getting better every year.</p> <p>What I propose is the fact that it should be quite rudimentary to connect all of these disparate parts of software development and create some truly amazing turing-test beater.</p> <p>This program could enter a virtual space and display a realistic environment as if on a webcam like the other participants. It can watch their facial expressions and it can listen to their speech and it can read their text. It could then create a response and either type or say it back to the group. The choosing of what to respond with is a difficult problem that not even most humans have mastered. We can get it close with a lot of work.</p> <p>The Turing Test is about proving that a communicator is a human, but 'proof' only in the sense that it is good enough to fool the human judges. If the human judges are simply everyone, they will not likely apply a strict formal procedure. Guessing or falling for a trick is good enough.</p> <p>Do you think we can do this?</p> <p>Is this plan flawed? Are there moral implications to tricking the average viewer in this way? Can we make millions of dollars by generating personal intelligent assistants?</p> http://stackoverflow.com/questions/1035618/whos-your-favorite-programmer -1 Who's your favorite programmer? [closed] Reverend Gonzo 2009-06-23T22:33:35Z 2009-06-23T22:43:47Z <p>Well, we're finding out favorite programmer this and that ... so let's get right down to the root.</p> <p>Who is it?</p> http://stackoverflow.com/questions/993006/how-should-chomskys-hierarchy-and-turing-machines-influence-language-design 7 How should Chomsky's Hierarchy and Turing Machines influence language design? dmindreader 2009-06-14T15:19:41Z 2009-06-14T18:02:43Z <p>I'm currently studying for a discrete mathematics test in which we are learning <a href="http://en.wikipedia.org/wiki/Chomsky%5Fhierarchy" rel="nofollow">Chomsky's hierarchy</a> and the type of automatas that recognize each level of the hierarchy. I'm being taught that most computer languages fall within "level 2 and 1" of the hierarchy, but not precisely how. </p> <p>My questions are:</p> <ol> <li><p>What features belong to each level? </p></li> <li><p>Is this nothing more than theoretical basis? I'm wondering if language designers like Dennis Ritchie and James Gosling had to go into this considerations when designing C and Java. Do they? How would someone apply this?</p></li> <li><p>We are being told that Turing Machines recognize the level 0 of the hierarchy. If so, are there any language features that belong to level 0? I'm guessing that this may be natural language processing, is it? </p></li> </ol> http://stackoverflow.com/questions/842379/jflap-turing-machine-shortcut-problem 0 JFLAP Turing Machine shortcut problem Robert Lamb 2009-05-09T00:29:48Z 2009-05-09T00:59:40Z <p>In JFLAP (<a href="http://jflap.org" rel="nofollow">http://jflap.org</a>), there are some shortcuts for Turing machine transitions. One of these shortcuts allows you to transition as long as the current tape symbol isn't the indicated symbol. For example, the transition !g,x;R basically says "Take this transition if the current tape symbol is not g". </p> <p>So far, so good. But the transition I want is !□,~;R which basically says "Move right as long as the current symbol is not the end-of-string (empty cell) symbol". The problem is I cannot figure out how to type in "!□". </p> <p>The JFLAP online documentation (<a href="http://www.jflap.org/tutorial/turing/one/index.html#syntax" rel="nofollow">http://www.jflap.org/tutorial/turing/one/index.html#syntax</a>) has this to say:</p> <pre><code> The first shortcut is that there exists the option of using the “!” character to convey the meaning of “any character but this character.” For example, concerning the transition (!a; x, R), if the head encounters any character but an “a”, it will replace the character with an “x” and move right. To write the expression “!□”, just type a “1” in when inputting a command. </code></pre> <p>My question is...how do I actually do what that last sentence is trying to explain to me?</p> <p>Thanks for your help!</p> <p>Robert</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field 29 The Halting Problem in the Field Claudiu 2008-10-25T06:08:25Z 2009-01-23T13:16:09Z <p>When have you ever personally come upon the <b><a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">halting problem</a></b> in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when you realized yourself that a problem you were trying to solve was, in fact, impossible to solve.</p> <p>The most recent time I came up with it was when studying type checkers. Our class realized that it would be impossible to write a perfect type checker (one that would accept all programs that would run without type errors, and reject all programs that would run with type errors) because this would, in fact, solve the halting problem. Another was when we realized, in the same class, that it would be impossible to determine whether a division would ever occur by zero, in the type-checking stage, because checking whether a number, at run-time, is zero, is also a version of the halting problem.</p> http://stackoverflow.com/questions/236000/whats-a-turing-machine 6 What's a Turing machine? Claudiu 2008-10-25T06:25:10Z 2008-11-02T02:16:04Z <p>What is a Turing machine and why do people keep mentioning it? My IBM PC is all I need to do my computation! Why does anyone care about these machines?</p>