Slashdot Mirror


Researchers Using AI To Build Robotic Bees

An anonymous reader writes "British researchers at the Universities of Sussex and Sheffield are developing a computer model of a bee's brain that they hope can help scientists better understand the brains of more-complex animals, such as humans, and perhaps power artificial intelligence systems for bee-like robots. Called 'Green Brain,' the project is trying to advance the science of AI beyond systems that just follow a predetermined set of rules, and into an area where AI systems can actually act autonomously and respond to sensory signals."

6 of 44 comments (clear)

  1. Bee Brain by busyqth · · Score: 5, Funny

    for (x in recognize_nearby_objects())
    {
    if (x.type == FLOWER) {
    nuzzle_flower(x);
    }
    else if (x.type == HUMAN) {
    sting(x);
    }
    else if (x.type == SMOKE) {
    sleep(1);
    }
    else {
    buzz();
    }
    }

    1. Re:Bee Brain by pitchpipe · · Score: 3, Funny

      // The following section is essentially complete. Someone
      // just needs to flesh out a few of the functions
      // (probably just take an intern an afternoon)

      for (x in recognize_nearby_objects())
      {
      if (x.type == FLOWER) {
      nuzzle_flower(x);
      }
      else if (x.type == HUMAN) {
      sting(x);
      }
      else if (x.type == SMOKE) {
      sleep(1);
      }
      else {
      buzz();
      }
      }

      --
      Look where all this talking got us, baby.
  2. Scale this up by teaserX · · Score: 3, Insightful

    These don't have to be limited to just RoboBees. The algorithm could be used for more than just pollination. Think about it. Build anything of the appropriate size to autonomously go out and collect $RESOURCE, return with a load, refuel itself and go back out. Some cursory self-defense, like hazard evasion, would be nice. Throw in some networked communication to help with discovery of sources and you have a very efficient way to accumulate stuff.

    --
    We really need your help
    http://www.gofundme.com/help-sherry
    1. Re:Scale this up by wierd_w · · Score: 3, Interesting

      Logistically, if the swarm could not manufacture new units, and or, collect and repair damaged/errant units, the system has serious vulnerabilities.

      take for instance, the human greed factor.

      If there is a huge swarm of autonomous robots out scouring riverbed sandbars for teensy gold nuggets, or some other discrete but scattered and valuable resource, how long do you think it would be before unscrupulous people tried to trick the bees into dropping the cargo off at a "new" dropoff point?

      Where there is profit, there will always be dirty dealing and crime. Look at the internet for instance, with something seemingly as harmless as email. Then along came the spammer.

      Autocollecting robot swarms would be a smorgasboard for whitecollar criminals.

  3. Excellent! by PRMan · · Score: 4, Insightful

    Maybe these ones will be resistant to Monsanto products...

    --
    Peter predicted that you would "deliberately forget" creation 2000 years ago...
  4. The problem with programming a brain.. by andydread · · Score: 3, Interesting

    may possibly be the approach many of these very smart researchers use. Perhaps the focus should be on developing some kind of artifical nevous system with the abitlity to learn on its own rather than trying to program for the dynamics of real world interaction. Perhaps the folks over at Boston Dynamics may be on to something? Not sure what its learning/memory capabilites are but it sure seems to behave like it has some kind of nervous system.