Slashdot Mirror


A Robot Learns To Fly

jerkychew writes: "For those of you that read my last post about the robot escaping its captors, there's more news regarding robots and AI. According to this Reuters article, scientists in Sweden created a robot that essentially 'learned to fly' in just three hours. The robot had no preprogrammed instructions on how to achieve lift, it had to deduce everything through trial and error. Very interesting stuff."

15 of 289 comments (clear)

  1. Oh great . . . by min0r_threat · · Score: 4, Funny

    Not only do we have to watch out for bird crap raining down on us, we now have robot excrement to worry about as well.

    --
    ~~~~~~~~~ "I must create my own system, or be enslav'd by another man's." William Blake, Jerusalem.
  2. Somehow... by madajb · · Score: 5, Funny


    The fact that it "cheats" somehow restores my faith in robotkind....

    -ajb

  3. Well.. by squaretorus · · Score: 5, Funny

    A robot has taught itself the principles of flying -- learning in just three hours what evolution took millions of years to achieve

    Well. Assuming the birds were TRYING to fly, knew what lift was, and already had the equipment (i.e. wings) to achieve this.

    This brings an image of stupid birds sitting around flapping randomly thinking "FUCK - I'm SURE this should fucking WORK! - Bastards - OOps, I just fell over to the left - does that mean my right wing was flapped right???? - Hey - John! WHAT DID I DO THEN????"

    1. Re:Well.. by madajb · · Score: 5, Funny


      Do you think it would have learned faster if they'd taken it up to the roof, and thrown it off?

      "Hmm...my sensors indicate that I am falling at a rapid rate. Maybe I ought to do something about that. I'll try flapping this thing. Nope. How about together..that seems to be wor...."

      -ajb

    2. Re:Well.. by Xaoswolf · · Score: 4, Insightful
      "This tells us that this kind of evolution is capable of coming up with flying motion,"
      However, the robot could not actually fly because it was too heavy for its electrical motor.

      This thing didn't even learn to fly, it just flapped it's wings. And what kind of evolution did it go through, it didn't pass on different genetic information until a new trait was passed on forming a new race, it just flapped it wings.

    3. Re:Well.. by tlotoxl · · Score: 4, Insightful

      It may not have physically passed on its traits to any offspring, but from the sounds of it the program did internally pass on traits to the next generation (ie iteration of the program) when those traits proved to be successful. That's how an evolutionary/genetic algorithm works, and while it may not be evolution in the biological sense of the word, it clearly models the biological process.

  4. very interesting by shd99004 · · Score: 4, Interesting

    Especially tried to cheat by standing on it's wingtips or similar. I would like to see something else though. What if we build lots of small generic robots, let's say they have wheels to move around only. The on the floor there could be more components that robots can attach themselves to, like giving them legs, wings, arms, eyes, ears etc., and then give them all different objectives, for example to survive, escape, learn from others, etc. Could be interesting to see if it would evolve into some kind of robot society where they all evolve different abilities and so on.

    --
    Will work for bandwidth
    1. Re:very interesting by Alan+Partridge · · Score: 5, Funny

      that's rubbish - what we really need is to give robots the ability to turn into cars and F-14s and then join together into a kind of super, Optimus-Prime type of device.

      --
      That was classic intercourse!
  5. Sensationalism by Mika_Lindman · · Score: 5, Insightful

    LONDON (Reuters) - A robot has taught itself the principles of flying -- learning in just three hours what evolution took millions of years to achieve, according to research by Swedish scientists published on Wednesday.

    Ridiculous to compare prebuilt robot to evolution from some dinosaur to flying dinosaur (also known as bird). This really is tabloid headlining at it's purest.
    And the robot didn't even fly, just generated some lift!
    It's like saying humans can fly, when they generate 1N lift flapping their arms.

    But it's great to see how selflearning robots and programs will start evolving now. I quess pretty soon computers and robots will be able to evolve faster on their own than when developed by humans.

  6. Impressive, but... by altgrr · · Score: 5, Insightful

    Rather than comparing this to millions of years of evolution, perhaps it would be better to compare it to a bird just old enough to physically be able to fly.

    The robot was physically equipped with all it needed to 'fly'; it was also equipped with all the wires in the right places. The fundamental difference between robots and living organisms is in the thinking: a newborn bird has to forge new synapses in its brain; this robot was designed with the purpose of 'learning to fly', so was given all the appropriate connections; it is just a matter of working out what sequence of events is required. Robots inherently have some form of co-ordination; birds, on the other hand, just like any other animal, have to develop such skills.

    --


    Like car accidents, most hardware problems are due to driver error.
  7. Imagine the Wright Brothers... by Kredal · · Score: 5, Funny

    "Hey guys, look! We stood on really tall stilts, does this mean we're flying?"

    That would have been something to see.

    The robot stands proudly on it's wings, and tells the scientists "Look at me, I generated maximum lift, and I don't have to exert any force at all. Oh, and from here, I can see the mouse is climbing over walls to get to the cheese without going through the maze. You humans are so stupid!"

    --
    Whoever stated that signature sizes should be limited to one hundred and twenty characters can just go ahead and kiss my
  8. Finally! by jstockdale · · Score: 5, Funny

    Cheating was one strategy tried and rejected during the process of artificial evolution -- at one point the robot simply stood on its wing tips and later it climbed up on some objects that had been accidentally left nearby.
    ...
    But after three hours the robot discovered a flapping technique
    ...
    However, the robot could not actually fly because it was too heavy for its electrical motor.
    "There's only so much that evolution can do," Bentley said.


    Finally we understand the dodo's place in evolution.

    --
    **AA: a bunch of mindless jerks who'll be the first against the wall when the revolution comes
  9. You don't need hardware to try this at home... by Ben+Jackson · · Score: 5, Interesting

    Here's what I did to play around with breeding algorithms from small building blocks:

    Define a very simple stack-based language. The stack only holds boolean values, and when empty pops and endless supply of "false" values and when full discards pushes. Choose some control flow opcodes:

    NOP, SKIP (pop, if true, skip ahead a fixed amount), REPEAT (pop, if true, skip back a fxied amount), NOT, RESET (clear stack, back to beginning)

    and some opcodes related to your environment (mine was a rectangular arena):

    GO (try to move forward one step, push boolean success), TURN (90 degrees clockwise), LOOK (push boolean "do I see food ahead?"), EAT (try to eat, push boolean success)

    Pick a stack size (this has interesting consequences, as some of my organisms learned to count by filling the stack with TRUE values and consuming them until they hit the endless supply of FALSE when empty) and a code size. Force all organisms to end in your RESET op. Generate them randomly and run them in your simulator (I did 20-50 at once letting each one run a few hundred instructions in a row). Evaluate fitness (in my case, how well fed they were) and breed them. You can combine the functions in lots of ways. Randomly choose opcodes (or groups of opcodes) from each, possibly with reordering or shifting. Introduce some mutations.

    Once you get something interesting, try to figure out how it works. This can be the hardest part -- my description above produced many variations that were only 8-10 instructions long before an unavoidable RESET opcode, and they could search a grid with obstacles for food!

  10. Robot Learns To Fly/Escape/etc. by clickety6 · · Score: 5, Funny

    "It was amazing," said Dr. Heinrich Hienrichson, "Before I knew it, the robot had stolen my credit card, set up an account on Orbitz and booked two airline tickets to Mexico. Now the robot has escaped and my toaster appears to have gone misisng as well..."

    --
    ----------------------------------- My Other Sig Is Hilarious -----------------------------------
  11. Genetic Algorithms? Anybody? by CompVisGuy · · Score: 5, Informative
    There are lots of posts from people who don't really get what these guys did. I don't think they made a particularly amazing achievement, but many slashdotters out there don't seem to understand the science behind the achievement (the Reuters article was awful, second hand from New Scientist, which is often poor on presenting the basics).

    What the researchers did was to build a robot that had wings and motors for manipulating them. These could be controlled by a computer. But instead of writing an explicit program telling the robot how to fly, they got the robot to learn how to fly. They did this using some sort of Genetic Algorithm.

    Basically, what a GA does is to generate a large population of possible solutions to the problem, then evaluate how good each one is (i.e. measure the lift each one creates in this example) and then to breed good solutions to create successive generations of possible solutions which are (hopefully) better than the previous generations.

    Then, once some criterion is met (for example, once the average fitness of your population doesn't change much for several generations), you then select the best solution found so far as being your answer.

    In mathematical terms, GAs are stochastic methods of optimising a function; they are typically used when solving the problem using an analytic method would be problematic (i.e. it would take too long etc.).

    So it's not really surprising the robot learned to 'fly' -- the researchers just managed to find an optimal sequence of instructions to send to the wings.

    The next step would be to get a robot to learn how to hover without the aid of the stabilising poles; then fly from one location to the other; then fly in a straight line in the presence of varying wind etc.

    What the research does do is to lend credence to the argument that insects and birds could have evolved, rather than having been 'designed' by some sort of a God.

    --


    "The noble art of losing face will one day save the human race"---Hans Blix