logo logo
Home arrow Blog
Monday, 05 January 2009
 
 
English English  Español Español  
Upcoming Events
10.Jun. 2009

IWANN 2009
Salamanca, Spain
11.Jun. 2009

Toward a Science of Consciousness
Hong Kong, China
15.Jun. 2009

International Workshop on Machine Consciousness
Hong Kong, China
15.Jun. 2009

The 8th IEEE International Conference on Cognitive Informatics
Hong Kong, China
22.Jun. 2009

IWINAC 2009
Santiago de Compostela, Spain
Tag Cloud
Architectures Associations Books Conferences Conscious Consciousness Developer Documentación Documentation Español Howto Machine Machine Consciousness Machines Neuroscience Publications Research Researchers Reviews Robotics Robots Spanish Studio VPL
Spotlight
Blog
WowWee Robopanda Print E-mail
Robots for Machine Consciousness Research
Written by Raúl Arrabales Moreno   
Tuesday, 08 January 2008

WowWee Robopanda
WowWee Robopanda
One of the latest robotic toys from WowWee Robotics is the Robopanda. Unlike former WowWee robots like Robosapien, this robot doesn’t work with a remote control, but directly by touch and sound. It is designed to play games, sing songs, and talk with children. It is even able to crawl on all fours and includes its own little toy panda!

It can operate in three different modes:

Training mode: he will guide you through his many features.
Friend mode: talkative and telling jokes.
Menu mode: he will tell stories, play games, sing songs and learn tricks.

It is equipped with 8 motors, sonic sensors, touch sensors, accelerometer tilt sensor, safety sensors, memory cartridge slot, LED indicators, and volume control. Power is supplied by 6 x C and 4 x AA batteries.

The following video is a Robopanda demo at CES 2007:


Robopanda commercial:

 

Be first to comment this article | Add as favourites (88) | Quote this article on your site | Views: 2396 | E-mail

 
Can a robot pass the mirror test? Print E-mail
Conscious Robots
Written by Raúl Arrabales Moreno   
Tuesday, 08 January 2008

Image First of all, the mirror test is not exactly intended as a general test for consciousness, but a specific test for self-consciousness, and more exactly self-recognition. It is generally applied to some higher mammals and infants. The test consists on determining whether or not the subject can recognize its own reflection in a mirror. So far, only subjects belonging to the following species have passed the mirror test:

Mirror Test
Mirror Test


humans (over 2 years old),
great apes (bonobos, chimps, orangutans, and gorillas),
rhesus monkeys,
elephants,
bottlenose dolphins,
rats,
and octopuses.

 

I think it is important to note that only a determined number of individuals of these species have passed the tests, while others generally fail to pass it. Obviously the test has to be adapted to each specie, although it typically consists on an odorless paint mark made in the forehead while the animal is anesthetized.

The mirror test has been considered by some researchers as one of the best available ways to test self-consciousness in organisms (see for instance how it is applied to Elephants in [1], and see [2] for an open discussion about the mirror test validity). Mirror test is famous thanks to its application to primates, as introduced by Gordon Gallup in the 70’s [3]. However, little work has been done in the application of the mirror test to robots.

Can we build a robot able to successfully pass the mirror test? And if so, does it really mean that the robot is self-aware?

Robot Mirror Test
Robot Mirror Test

Takeno et al. [4] at Meiji University in Japan claim that they have succeeded in achieving mirror image cognition for a robot. They define four steps for their experiments, where four robots are used: the self robot Rs, the other robot Ro, the controlled robot Rc, and the automatic robot Ra. The first two robots are endowed with the mirror image cognition system. The third robot is controlled by the self robot, while the last one moves automatically.

The four experiments are as follows:

1) The self robot Rs imitates the action of its own image reflected in a mirror.
2) The self robot Rs imitates an action taken intentionally by the other robot Ro as imitative behavior.
3) The controlled robot Rc is controlled completely from the self-robot to imitate his behavior.
4) The self robot Rs imitates the random actions of the automatic robot Ra.

The robot is able to recognize its own image reflected in a mirror without confusing it with the image of another robot with the same physical aspect. The mirror image cognition system is based on an artificial neural network. The aim of this system is to recognize and differentiate robot’s own behavior from other robot’s behavior. Takeno also suggests that imitation is a proof of consciousness as it requires the recognition of other subject’s behavior and then the application of that behavior to oneself.

The results described in the paper indicate that in some way the robots are passing the mirror test with an accuracy of 70%, but I am reluctant to claim that they are self-conscious. I would rather say that the present a-consciousness of their recognized image.

[1] http://www.conscious-robots.com/en/neuroscience/mammals-brain/elephants-recognize-themselves-in-the-m-3.html
[2] http://www.conscious-robots.com/en/forums-./test-for-consciousness/mirror-test/view.html
[3] Gallup, G.G., Jr. (1977). Self-recognition in primates: A comparative approach to the bidirectional properties of consciousness. American Psychologist, 32, 329-337.
[4] Junichi Takeno, Keita Inaba, Tohru Suzuki. Experiments and examination of mirror image cognition using a small robot. Proceedings. 2005 IEEE International Symposium on Computational Intelligence in Robotics and Automation, 2005. CIRA 2005. Full paper available at: http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1554325

 

Comments (1) | Add as favourites (237) | Quote this article on your site | Views: 4771 | E-mail

Last Updated ( Wednesday, 05 March 2008 )
Read more...
 
How to use the new features of C# 2.0 Print E-mail
Robotics Developer Studio Resources and Howto
Written by Raúl Arrabales Moreno   
Thursday, 20 December 2007

When you look for the first time to the C# sample code provided  with Robotics Studio you will notice that  some new features of this language are extensively used.  Statements like yield return, yield break, and IEnumerator<ITask> might call your attention.

 
Basically, all of this is about Iterators. If you are new to C# 2.0 and want to program robotics applications using Robotics Studio you should clearly understand how Iterators are used.
 
Iterators can be methods, get accessors or operators that support foreach interation in a class. Usually, if you want to use the foreach statement with a given class you need to implement the IEnumerable interface. However, using Iterators allows you to support foreach iteration in a class without having to implement the entire IEnumerable interface. You just need to write an iterator able to sequentially access the data structures contained in your class. The Visual Studio compiler detects iterators and automatically generates the IEnumerable methods  CurrentMoveNext and Dispose.
 
When writting iterators code, the statement yield return is used to return each element in turn, while yield break ends the iteration. The elements returned by yield return <expression> have to be of type IEnumerable or IEnumerator. In the case of Robotics Studio, when we are using the CCR, we usually return a IEnumerator<ITask> (as the generics IEnumerable<T> and IEnumerator<T> can also be used with iterators). Basically, what we are doing is dispatching a collection of tasks.
 
Have a look to the following links for a detailed explanation and sample code:
 
 

 

 

 

 

Be first to comment this article | Add as favourites (86) | Quote this article on your site | Views: 3369 | E-mail

Last Updated ( Thursday, 20 December 2007 )
 
Robocup MSRS Challenge Maillist Print E-mail
Robotics Studio Forums
Written by Raúl Arrabales Moreno   
Thursday, 20 December 2007

This is a mail list for the participants in the RoboCup MSRS Challenge. The list is for announcements and discussions relating to the RoboCup Microsoft Robotics Studio Challenge.

 

 

Following the link above you will be able to browse the RoboCup-MSRS list archives.

 

Be first to comment this article | Add as favourites (90) | Quote this article on your site | Views: 2961 | E-mail

 
Microsoft Robotics Studio (1.5) Refresh Print E-mail
Robotics Studio News
Written by Raúl Arrabales Moreno   
Monday, 17 December 2007
Image 
 
Microsoft Robotics have relased an update of the Microsoft Robotics Studio 1.5 platform. This update, called Refresh, include bugfixes and some new features as a response to the comments, requests and bug reports received from the community in the MSDN forums.
 
The complete list of new features and bug fixes can be found here:
 
 
 
Note that this update is binary compatible with the original MSRS 1.5 version. Therefore, you don't need to recompile your code after applying the Refresh.
 
There are two installation packages: one is a full install for users who want to install MSRS for the first time. The other is an update package that can be applied on top of your current MSRS 1.5 installation.
 
 

Be first to comment this article | Add as favourites (91) | Quote this article on your site | Views: 4764 | E-mail

Last Updated ( Monday, 17 December 2007 )
 
<< Start < Prev 11 12 13 14 15 16 17 18 19 20 Next > End >>

Results 86 - 90 of 221
 
Top! Top!