|
-
Nov 14th, 2005, 05:42 PM
#1
Thread Starter
Member
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..
-
Nov 17th, 2005, 05:59 AM
#2
Thread Starter
Member
Re: Neural Networks & data prediction
-
Nov 17th, 2005, 06:40 AM
#3
Frenzied Member
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.
-
Nov 17th, 2005, 01:09 PM
#4
Re: Neural Networks & data prediction
Thread moved to General Developer - hopefully somebody with relevant knowledge will see it here!
-
Nov 17th, 2005, 01:29 PM
#5
Frenzied Member
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.
-
Nov 17th, 2005, 04:28 PM
#6
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
 
-
Nov 18th, 2005, 10:20 AM
#7
Re: Neural Networks & data prediction
Is this an Artificial Intelligence kind of thing?
-
Nov 18th, 2005, 12:08 PM
#8
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.
-
Nov 21st, 2005, 01:09 PM
#9
Thread Starter
Member
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
-
Nov 21st, 2005, 01:34 PM
#10
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.
-
Nov 21st, 2005, 01:36 PM
#11
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
 
-
Nov 22nd, 2005, 03:32 AM
#12
Re: Neural Networks & data prediction
-
Nov 22nd, 2005, 08:20 PM
#13
Thread Starter
Member
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
-
Nov 23rd, 2005, 01:52 AM
#14
Frenzied Member
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.
-
Nov 23rd, 2005, 07:45 AM
#15
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|