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."

2 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.