Results 1 to 4 of 4

Thread: AI format Flight Sims

  1. #1

    AI format Flight Sims

    Talk about starting onthe hard stuff

    I'd like to hear some opinions on approaches to implement this kinda of AI. I was thinking of a combination of Neural Networks, Flocking and other techniques. Transition between the states would be handled by a state machine that each system would feed into.

    sounds kinda easy when you put it like that.

    OK my starting point was the neural net implementation I found in the Pythian Project (who remembers that )

    http://www.koders.com/delphi/fidBD23....aspx?s=neural

    This seemed like a good place to start (my neural networking is rusty , I havne't played with this stuff since Uni). Bu tI'm having trouble training the net to even handle a basic xor gate. has anyone looked at this Network implementation? Or have any recommendations on other implementations that will work under Delphi 5 and Free Pascal?

    Dean
    <A HREF="http://www.myhpf.co.uk/banner.asp?friend=139328">
    <br /><IMG SRC="http://www.myhpf.co.uk/banners/60x468.gif" BORDER="0">
    <br /></A>

  2. #2

    AI format Flight Sims

    I believe the site is wellknown already, but www.ai-junkie.com may be of some help. It has a section on NN with samples written in Delphi. Also ai-depot.com is a good place to start (I noticed they've updated the site heavily).

    I'm interested to see where this is going to, so please do keep us posted!

  3. #3
    Co-Founder / PGD Elder WILL's Avatar
    Join Date
    Apr 2003
    Location
    Canada
    Posts
    6,107
    Blog Entries
    25

    AI format Flight Sims

    I'd also have to recommend http://www.ai-junkie.com/! Mat Buckland is the author of the tutorials on his site AND a book that has been added to the Game Development Series(unfortunately uses C code, but it's the theory that counts most!)

    If you try any of the Delphi demos, know that the minesweeper demo for Delphi is garbage. There is a member 'Lucky" that has made a working copy, but I cannot recall where it can be located now. (It was some time ago)


    But so far using NNs with GAs is probably the nicest method of using NNs for anything. However you will require a 'trainning mode' or 'trainner' for your NNs to evolve them and teach them how to do the tasks you require.
    Jason McMillen
    Pascal Game Development
    Co-Founder





  4. #4

    AI format Flight Sims

    Thanks for the input guys.

    I'll check out those sites. I've started implementing an xml driven Backpropogation network. the netowork is defined by a specific xml schema and the training data will also be provided in xml. I'll be posting all the code on the Cerebral Bicycle site once I've got it working. The schema I have is this

    Code:
    <NeuralNet>
       <ActivationFunction></ActivationFunction>
      <Layers>
          <Layer>
               <Neuron>
                   <Inputs>
                         <Input layer="" neuron="" weight=""/>
                   </Inputs>
               </Neuron>
          </Layer>
      </Layers>
    </NeuralNet>
    in the Input section the layer is the index (zero based) of the layer we are inputing from and neuron is the index (zero based) of the neuron in that layer. This will allow me to define quite complex multi layer networks.

    the ActivationFunction might be a piece of script or just the name of a pre defined funtion.

    I have the feed forward mode written, just need to do the training part.

    As for GA's breeding NN's, this is something I played with back at uni (I did my disteration on GA's and PBIL's ), it's a fantastic technique which allows you to bread the layout of the network rather than defining the path's manually. If I get a chance I'll implement that as well, and release all the code with that. However that might have to wait for now :cry:

    Dean
    <A HREF="http://www.myhpf.co.uk/banner.asp?friend=139328">
    <br /><IMG SRC="http://www.myhpf.co.uk/banners/60x468.gif" BORDER="0">
    <br /></A>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •