Displaying 20 results from an estimated 1000 matches similar to: "intermittant passdb error"
2016 May 18
0
intermittant passdb error
Problem worked-around.. After working on this for a couple of days, I
finally found this post;
http://askubuntu.com/questions/760026/problem-with-pam-authorization-in-dovecot
in /etc/dovecot/conf.d/10-master.conf uncomment this line;
#default_vsz_limit = 256M
and increase the vsz_limit. e.g.
default_vsz_limit = 512M
Seems like a bug/change in the recent build of PAM. Hopefully this helps
2020 Oct 12
0
Fwd: Help using the exclude option in the neuralnet package
Dear all,
the exclude and constant.weights options are used as follows:
exclude: A matrix with n rows and 3 columns will exclude n weights. The the first column refers to the layer, the second column to the input neuron and the third column to the output neuron of the weight.
constant.weights: A vector specifying the values of the weights that are excluded from the training process and treated
2011 Nov 27
0
nnet plot
good night
Again I ask for help to the community, as I am new at this, I have some
basic questions.
I am looking for packages on neural networks and so you can search found
these two that I think are the most used, neuralnet, nnet.
So you can test, and correct me if I'm wrong the neuralnet only accepts as
input values ??nomer, did a little test
data (iris)
library (neuralnet)
2011 Nov 28
0
Plot nnet
good night
Again I ask for help to the community, as I am new at this, I have some
basic questions.
I am looking for packages on neural networks and so you can search found
these two that I think are the most used, neuralnet, nnet.
So you can test, and correct me if I'm wrong the neuralnet only accepts as
input values ??nomer, did a little test
data (iris)
library (neuralnet)
2020 Oct 14
0
R-help Digest, Vol 212, Issue 12
Dear Frauke,
Thank you very much for taking the time to respond.
You explanation was very helpful, and I now have that part figured out!
Best Wishes,
Dan
Frauke
Message: 3
Date: Mon, 12 Oct 2020 08:33:44 +0200 (CEST)
From: =?UTF-8?Q?Frauke_G=C3=BCnther?= <guenther at leibniz-bips.de>
To: "r-help at r-project.org" <r-help at r-project.org>
Cc: William Michels <wjm1
2008 Jul 18
0
A neural network problem---neuralnet package
Hi R,
Here's a question/problem on the 'neuralnet' package for neural
networks. I have more than 50 factors in each of my independent
variables. When I apply the command 'neuralnet', I get the below warning
message,
> net.sum <- neuralnet( Sum~Var1+Var2+Var3, b,
hidden=0,linear.output=TRUE)
Warning message:
'predictions' will not be calculated, as at
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". The difficulty I am facing is that the responses of
2014 Jan 13
1
Ayuda con Neuralnet
Hola a todos, en primer lugar quería agradecer la ayuda recibida desde el foro con respecto a la creación de una red neuronal. Estoy utilizando el paquete Neuralnet, que me parece que es bastante bueno, pero tengo el problema que soy incapaz de hacer las predicciones del modelo. Sé que se hace con el comando "compute", pero no encuentro ningún ejemplo de cómo hacerlo. ¿Alguien me puede
2015 Nov 03
3
Problema R se cuelga neuralnet
Muchas gracias
Instale R desde CRAN y ejecutar version en R y R revolution, informa lo mismo, pero en el segundo neuralnet se cuelga, paso una captura de pantalla (Rstudio bajo r revolution también tiene problemas, no con R desde CRAN).
Javier Rubén Marcuzzi
Técnico en Industrias Lácteas
Veterinario
De: juan(uned)
Enviado: martes, 3 de noviembre de 2015 12:48
Para: r-help-es en
2015 Nov 03
3
Problema R se cuelga neuralnet
Estimados
Tengo un problema, R se cuelga (cierra, aborta, etc.) al usar códigos de neuralnet. Copio un ejemplo cualquiera para preguntar si a otros les pasa lo mismo o es un problema puntual en mi computadora (uso R revolution win 10).
# install, load package
install.packages(NeuralNetTools)
library(NeuralNetTools)
# create model
library(neuralnet)
AND <- c(rep(0, 7), 1)
OR <- c(0, rep(1,
2012 Feb 15
1
neuralnet problem
Hello List !
I'm a bright new R user, and I encounter a problem when trying to use the neuralnet package.
I have a training set with 8 inputs, and there are 3 outputs (I need 3 distinct neurones as output). Although I read the examples, and the package article, I don't know how to tell R there are 3 outputs (3 outputs neurones).
Here is my actual code :
# All = input data
All <-
2020 Oct 14
2
which() vs. just logical selection in df
Hi Dr. Snow, & R-helpers,
Thank you for your reply! I hadn't heard of the {microbenchmark}
package & was excited to try it! Thank you for the suggestion! I did
check the reference source for which() beforehand, which included the
statement to remove NAa, and I didn't have any missing values or NAs:
sum(is.na(dat$gender2))
sum(is.na(dat$gender))
sum(is.na(dat$y))
[1] 0
[1] 0
[1]
2012 Aug 27
0
Optimizing a model toward desired outputs once trained?
I didn't get any responses to this question on stats.SE:
- http://stats.stackexchange.com/questions/34415/optimization-of-models-ann-radial-basis-etc-in-r-to-target-predictor-levels
What I'm looking for, using neuralnet as an example, is how to guide a
model toward an output profile once the model is trained. For example:
model1 <- neuralnet(formula=out1 ~ intput1 + input2 + input3 +
2012 Aug 01
3
Neuralnet Error
I require some help in debugging this code
library(neuralnet)
ir<-read.table(file="iris_data.txt",header=TRUE,row.names=NULL)
ir1 <- data.frame(ir[1:100,2:6])
ir2 <- data.frame(ifelse(ir1$Species=="setosa",1,ifelse(ir1$Species=="versicolor",0,"")))
colnames(ir2)<-("Output")
ir3 <- data.frame(rbind(ir1[1:4],ir2))
2011 Mar 13
0
An example on how to use neuralnet to predict values
Hello
I am new to R and wonder whether someone out there could send me an example
on how to use the package neuralnet to fit a model to data, following the
usual procedure, that is, fitting the model using the training set and then
using the validation set to check the model. Moreover, the neural net
model is recursive (uses its own output values)-> infinite steps ahead
prediction.
Many
2020 Oct 09
1
Help using the exclude option in the neuralnet package
Good Morning,
I am using the neuralnet package in R, and am able to produce some basic neural nets, and use the output.
I would like to exclude some of the weights and biases from the iteration process and fix their values.
However I do not seem to be able to correctly define the exclude and constant.weights vectors.
Question: Can someone point me to an example where exclude and
2010 Nov 16
1
Multiple MYSQL hosts as passdb backend
Hello,
I use mysql as passdb backend for my dovecot 2.0.6 installation. I have 2
mysql 5.0.77 servers with master/slave replication enabled. My goal is to
ensure dovecot's ability to provide its services even when one of the mysql
hosts are unavailable. Here is my passdb backend conf:
passdb {
driver = sql
args = /etc/dovecot/mysql.conf
}
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
implementations?
If anyone has any advice before I dive
2002 Nov 23
0
Intermittant hang in cmdscale (PR#2323)
Full_Name: Cam Webb
Version: 1.6.0 (fink X11 compile)
OS: Mac OS X (Jaguar)
Submission from: (NULL) (64.168.28.87)
This is an unpredictable, intermittant hang during cmdscale of the mva library.
Some data never cause a problem, other data always do, abut I can't track down
the difference in the structure of the data. Sometimes the function will work
for `difficult' data after it has
2005 Jul 12
1
winbind + pam - caching + intermittant delay ==~ bug?
Hi everybody,
I think I've found a bug in winbind, or I'm out to lunch and need of
help.. configuring winbind. Basically, it's working great except once
in a while it takes 2-5 minutes for a single authentication. I've also
seen symptoms winbind isn't caching credentials.
Here are my details:
* for testing purposes, proftpd was configured only authenticate against