Displaying 20 results from an estimated 413 matches for "neural".
Did you mean:
neutral
2009 May 27
3
Neural Network resource
Hi All,
I am trying to learn Neural Networks. I found that R has packages which can help build Neural Nets - the popular one being AMORE package. Is there any book / resource available which guides us in this subject using the AMORE package?
Any help will be much appreciated.
Thanks,
Indrajit
2009 May 12
0
How do I extract the scoring equations for neural networks and support vector machines?
Sorry for these multiple postings.
I solved the problem using na.omit() to drop records with missing values
for the time being. I will worry about imputation, etc. later.
I calculated the sum of squared errors for 3 models, linear regression,
neural networks, and support vector machines. This is the first run.
Without doing any parameter tuning on the SVM or playing around with the
number of nodes in the hidden layer of the neural network, I found that
the SVM had the lowest sum of squared errors, followed by neural
networks, with regression b...
2007 Jun 06
3
Neural Net. in R
Hi everyone,
I'm a graduate student of engineering, lately introduced with R. and using R
for my project and thesis. I'm trying to use R for implementing a neural
network regression model and apply it to my database. I found three R
packages ("AMORE" , "grnnR" , "neural") in R website, but their manuals are
not really user-friendly in my idea. I was wondering if anyone has a written
code in R using any of these packages for a fe...
2010 Jan 03
2
Artificial Neural Networks
Hi! I am studying to use some R libraries which are applied for working with artificial neural neworks (amore, nnet). Can you recommend some useful, reliable and easy to get example data to use in R for creating and testing a neural network?
__________________________________________________________________
Make your browsing faster, safer, and easier with the new Internet Explorer[...
2009 May 24
2
accuracy of a neural net
Hi. I started with a file which was a sparse 982x923 matrix and where the
last column was a variable to be predicted. I did principle component
analysis on it and arrived at a new 982x923 matrix.
Then I ran the code below to get a neural network using nnet and then wanted
to get a confusion matrix or at least know how accurate the neural net was.
I used the first 22 principle components only for the inputs for the neural
net.
I got a perfect prediction rate which is somewhat suspect ( I was using the
same data for training and pred...
2009 May 12
0
FW: neural network not using all observations
As a follow-up to my email below:
The input data frame to nnet() has dimensions:
> dim(coreaff.trn.nn)
[1] 5088 8
And the predictions from the neural network (35 records are dropped -
see email below for more details) has dimensions:
> pred <- predict(coreaff.nn1)
> dim(pred)
[1] 5053 1
So, the following line of R code does not work as the dimensions are
different.
> sum((coreaff.trn.nn$hh.iast.y - predict(coreaff.nn...
2009 Jul 01
1
Neural Networks
Hi,
I am starting to play around with neural networks and noticed that there are
several packages on the CRAN website for neural networks (AMORE, grnnR,
neural, neuralnet, maybe more if I missed them).
Are any of these packages more well-suited for newbies to neural networks?
Are there any relative strengths / weaknesses to the different
imp...
2010 Dec 10
2
Help..Neural Network
Hi all,
I am trying to develop a neural network with single target variable and 5
input variables to predict the importance of input variables using R. I used
the packages nnet and RSNNS. But unfortunately I could not interpret the out
put properly and the documentation of that packages also not giving proper
direction. Please help me to...
2007 Feb 12
3
Help neural network in R
I am interested in Neural network models in R. Is
there any reference material/tutorial which i can use.
Regards,
____________________________________________________________________________________
TV dinner still cooling?
Check out "Tonight's Picks" on Yahoo! TV.
2012 Jan 24
0
Problem training a neural network with "neuralnet" library
Hi,
I am having difficulty in training a neural network using the package "neuralnet". My neural network has 2 input neurons (covariates), 1 hidden layer with 2 hidden neurons and 2 output neurons (responses). I am training my neural network with a dataset that has been transformed so that each column is of type "numeric"....
2009 Jul 23
1
Activation Functions in Package Neural
Hi,
I am trying to build a VERY basic neural network as a practice before
hopefully increasing my scope. To do so, I have been using package "neural"
and the MLP related functions (mlp and mlptrain) within that package.
So far, I have created a basic network, but I have been unable to change the
default activation function. If so...
2007 Feb 23
2
Neural Net forecasting
Are there any packages in R that are suitable for doing time series
forecasting using neural networks? I have looked in the nnet package and
neural package and they both seem geared towards classification.
thanks,
Spencer
[[alternative HTML version deleted]]
2008 Apr 26
1
Variables selection in Neural Networks
Hi folks,
I want to apply a neural network to a data set to classify the observations
in the different classes from a concrete response variable. The idea is to
prove different models from network modifying the number of neurons of the
hidden layer to control overfitting. But, to select the best model how I can
choose the relevant v...
2009 May 12
0
neural network not using all observations
I am exploring neural networks (adding non-linearities) to see if I can
get more predictive power than a linear regression model I built. I am
using the function nnet and following the example of Venables and
Ripley, in Modern Applied Statistics with S, on pages 246 to 249. I have
standardized variables (z-scores) such...
2004 Jun 11
1
probabilistic neural networks
Hi,
I'm working on a classification problem and one of the methods I'd
like to use are neural networks. I've been using nnet to build a
classification network. However I would like to have the probabilities
associated with the prediction.
Are there any implementations of probabilistic neural networks available
in R?
thanks,
-----------------------------------------------------------...
2003 Aug 20
1
Neural Networks in R
Hello!
We are a group of three students at Bielefeld University currently working
on a statistical projects about neural networks. Within the framework of this
project we are supposed to use the nnet-function in R and explain how it
works. Since anyone of us has much experience in using R we hoped to find some
information on your homepage. Unfortunatelly, we haven't been very successfull
so far.
We were wondering...
2009 Apr 18
1
Neural Networks in R - Query
Dear R users,
I'd like to ask your guidance regarding the following two questions: (i) I
just finished reading Chris Bishop's book "Neural Networks for Pattern
Recognition". Although the book gave me good theoretical foundation about
NN, I'm now looking for something more practical regarding architecture
selection strategies. Is there any good reference about "best practices" for
architecure selection? (ii) Which R...
2010 Jul 18
2
Neural Network
Hi all,
I am working for my master's thesis and I need to do a neural network to
forecast stock market price, with also external inputs like technical
indicators.
I would like to know which function and package of R are more suitable for
this study.
Thanks a lot for your response,
Arnaud TREBAOL.
--
Arnaud Trébaol
T.I.M.E. Student
Ecole Centrale de Lille (09)
P...
2007 Jan 28
2
nnet question
...r 100 iterations
> pr.nn.train<-predict(m.nn.omega,training)
> corr.pr.nn.train<-round(cor(pr.nn.train,training$omega),2)
> pr.nn.test<-predict(m.nn.omega,test)
> corr.pr.nn.test<-round(cor(pr.nn.test,test$omega),2)
> cat("correlation coefficient for train using neural
network:",corr.pr.nn.train,"\n")
correlation coefficient for train using neural network: 0.32
> cat("correlation coefficient for test using neural
network:",corr.pr.nn.test,"\n")
correlation coefficient for test using neural network: 0.39
2003 Jul 11
2
Nonliner Rgression using Neural Nnetworks
Hi,
I am an old hand at chemistry but a complete beginner at statistics
including R computations.
My question is whether you can carry out nonlinear
multivariate regression analysis in R using neural networks, where the
output variable can range from -Inf to + Inf., unlike discriminant
analysis where the output is confined to one or zero. The library nnet
seems to work only in the latter case but then I could be wrong.
Please help me there.
Thanks in advance.
Y.Ishii <yukiasais at yb...