Results 1 to 15 of 15

Thread: Neural Networks & data prediction

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2005
    Posts
    35

    Neural Networks & data prediction

    hi all,,

    I'm working on a project where I'm given a scattered data and using Neural Networks I'm supposed to find an output when given a certain input not in the given data.

    I'm not familiar with Neural Networks but I guess that it should come up with a formula that best describes the scattered data and hence estimate the output of the given input.

    But I don't know how it works! and how am I supposed to input my scattered data to get the formula describing this data!!

    Plz help..

  2. #2

    Thread Starter
    Member
    Join Date
    Oct 2005
    Posts
    35

    Re: Neural Networks & data prediction


  3. #3
    Frenzied Member FishGuy's Avatar
    Join Date
    Mar 2005
    Location
    Bradford UK
    Posts
    1,708

    Re: Neural Networks & data prediction

    Hi e-girl I think the problem may be that it's probably not much of a database issue. You are probably only going to store your training data in a database but the clever stuff will be done elsewhere. I would suggest you try in the maths forum for advice on the equations and possibly the vb forum for finding a way to implement it.

  4. #4
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: Neural Networks & data prediction

    Thread moved to General Developer - hopefully somebody with relevant knowledge will see it here!

  5. #5
    Frenzied Member SeanK's Avatar
    Join Date
    May 2002
    Location
    Boston MA
    Posts
    1,160

    Re: Neural Networks & data prediction

    What is a neural network?
    Beantown Boy
    Please use [highlight=vb]your code goes in here[/highlight] tags when posting code.
    When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.

  6. #6
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,106

    Re: Neural Networks & data prediction

    I currently have a program that does something like that using an evolutionary algorithm rather than a neural net. The user enters a bunch of observations, and the variables that the person thinks creates the observed pattern. The program then evolves the relationship between the variables that matches the output.

    Sounds fairly similar to what you are trying to do. What's it for? Not exactly a simple program, from the sounds of it.
    My usual boring signature: Nothing

  7. #7
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Neural Networks & data prediction

    Is this an Artificial Intelligence kind of thing?

  8. #8
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Neural Networks & data prediction

    I implemented a neural net for one of my AI classes a few years back and it wasn't too hard to get working so-so, but it was kind of hard to get it working right. The worst thing was, it was very slow to train, so if I wanted to try something new, I would have to train it for quite a while to get accurate results.

    Of couse, if nothing changes, you can save your node states out to a file and you would not have to retrain between tests, but more often than not, you are modifying something that would require re-training.

    Wikipedia has a decent write up of what a Neural Network is:

    http://en.wikipedia.org/wiki/Artificial_neural_network

    You could probably pick up any computer science AI book and they would have some examples of Neural Nets. Plus if I remember correctly I followed a C example I found on the web, which really led to my understanding of neural nets.
    Last edited by Negative0; Nov 18th, 2005 at 12:20 PM.

  9. #9

    Thread Starter
    Member
    Join Date
    Oct 2005
    Posts
    35

    Re: Neural Networks & data prediction

    heeey, thank you guyz

    well, my observations are dates vs. traffic.. and i'm supposed to find out (predict) the traffic value on a date that is not in my observations, for example traffic after a year...

    can I use neural net. to get this output? if so is it implementable using VB??

    thanx again

  10. #10
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Neural Networks & data prediction

    Well you'd probably be better off breaking your input into Month, Day, and DayofWeek, versus traffic. This would let you correlate the Month/Day (ignoring the year) and dayofweek, to determine the accurate traffic volume.

    I was able to implement a Neural Net in VB.Net based on a C example I found somewhere on the web. It can be done, you just need to implement the Neural Net algorithm in your VB code. My neural net was very similar to what you have to do, it took the date (day and month) the day of the week, current inventory and a few other items to guess the amount a plant would have to manufacture in a given day.

  11. #11
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,106

    Re: Neural Networks & data prediction

    It certainly can be done.

    Is this some class thing, or a speculative job assignment?
    My usual boring signature: Nothing

  12. #12
    Fanatic Member namrekka's Avatar
    Join Date
    Feb 2005
    Location
    Netherlands
    Posts
    639

    Re: Neural Networks & data prediction


  13. #13

    Thread Starter
    Member
    Join Date
    Oct 2005
    Posts
    35

    Re: Neural Networks & data prediction

    thanx guyz

    this is a job assignment, but i'm new to vb so still trying to figure out how to make it work, and to find the proper algorithm to implement the neural net. using vb..

    Negative0 not sure i got u well, but what you've done seems very similar to what i'm trying to do

    thanx namrekka for the file, i'm downloading it

  14. #14
    Frenzied Member
    Join Date
    May 2003
    Location
    Sydney
    Posts
    1,123

    Re: Neural Networks & data prediction

    i remember seeing something of a neural network in the planetsourcecode or devx(not sure), a fully implemented working code in vb. and there is a neural network discussion in neworder.box.sk. thats all i can say for now. have an idea of how to implement it but have never actually worked with it.

  15. #15
    Frenzied Member FishGuy's Avatar
    Join Date
    Mar 2005
    Location
    Bradford UK
    Posts
    1,708

    Re: Neural Networks & data prediction


Posting Permissions

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



Click Here to Expand Forum to Full Width