search for: criterium

Displaying 20 results from an estimated 43 matches for "criterium".

2004 Jun 23
1
How to define stopping criterium for Optim with L-BFGS-B
Hi, I am using optim with a L-BFGS-B method to minimize a function. As I've understood, the way to specify a tolerance for stopping optimization is through "factr" argument. My function, is by construction, minimal when equal to 1. I wonder if there is any way to pass this info to "optim". If not, how "factr" argument works (I am quite confused about the
2007 Apr 23
3
Link AD to pre-existing UNIX accounts
I'm trying to use winbindd to enumerate and link AD users to their pre- existing UNIX accounts. Right now, winbindd creates new "users" for UNIX based on windows username and groups. What I can't figure out is how to explicitly map the AD users to their pre- existing UNIX accounts. I'd like the users to be able to access their UNIX accounts with their UNIX authentication
2013 May 20
0
Neural network: Amore adaptative vs batch why the results are so different?
...le(51:100,25), sample(101:150,25)) net <- newff(n.neurons=c(4, 2, 3), # number of units per layer learning.rate.global=1e-2, # learning rate at which every neuron is trained momentum.global=5e-4, # momentum for every neuron error.criterium="LMS", # error criterium: least mean squares hidden.layer="sigmoid", # activation function of the hidden layer neurons output.layer="sigmoid", # activation function of the output layer neurons...
2011 Jan 27
4
[LLVMdev] recreate optimized clang output
...ain "somewhere else" (externally), and the optimizer will find in some other module to possibly inline it later on. I am planning to concat all the *.ll (eg "link" the files) and pass them to the "global" optimizer, as "size" is a very important optimization criterium to me. After that, the back-end will be invoked. Is that a good approach? Best, Patrick
2011 Jan 27
0
[LLVMdev] recreate optimized clang output
...somewhere else" (externally), and the optimizer will find in some other module to possibly inline it later on. > > I am planning to concat all the *.ll (eg "link" the files) and pass them to the "global" optimizer, as "size" is a very important optimization criterium to me. After that, the back-end will be invoked. > Is that a good approach? How about just add -O4 on clang (or llvm-gcc) command line to get LTO optimizations ? See http://llvm.org/docs/LinkTimeOptimization.html http://llvm.org/docs/GoldPlugin.html On Mac OS X, it is a checkbox in Xcode. - D...
2009 Jan 17
2
data.frame: how to extract parts
...the R syntax. It's perhaps pretty simple, but I don't understand it ... I can extract a column from a data.frame with the following code for example ... b$row1[b$row1 == "male"] so I see all male-entries. But I cannot extract all lines of a data.frame depending on this criterium; only.male <- b[b$row1 == "male"] With that, I get an "undefined columns selected" message. So how can I extract lines of a data.frame depending on a level variable?
2018 Jan 29
2
send specific NDR message for users in certain OU
Hi, The question can perhaps be made more generic like this: Can dovecot generate a *specific* NDR (or an autoreply) for accounts that meet a specific criterium, such as: - user account was found under OU=to-delete,CN=company... contrary to the regular location CN=Users,CN=company... We would like to move to-be-deleted users to this container, before actually deleting them. That gives us an easy way to revert, if the deletion turns out to be erroneous....
2011 Jan 27
2
[LLVMdev] recreate optimized clang output
...e else" (externally), and the optimizer will find in some other module to possibly inline it later on. >> >> I am planning to concat all the *.ll (eg "link" the files) and pass them to the "global" optimizer, as "size" is a very important optimization criterium to me. After that, the back-end will be invoked. >> Is that a good approach? > > How about just add -O4 on clang (or llvm-gcc) command line to get LTO optimizations ? > See http://llvm.org/docs/LinkTimeOptimization.html > http://llvm.org/docs/GoldPlugin.html > On Mac OS X, i...
2000 Mar 29
2
regularly lattice & neighbors
Dear R-users, Is there a procedure to identify neighbors in a regular lattice using either a "rook" or a "queen" criterium? To be more specific, suppose: My lattice: 1 2 3 4 5 6 7 8 9 "Rook" Neighbors 1 has neighbors 2,4 2 has neighbors 1,3,5 ... 5 has neighbors 2,4,6,8 "Queen Neighbors" 1 has neighbors 2,4,5 2 has neighbors 1,3,4,5,6 For each case, the final output would be a 9x9 matrix with...
2006 Jan 10
5
matching country name tables from different sources
Hi, Before I reinvent the wheel I wanted to kindly ask you for your opinion if there is a simple way to do it. I want to merge a larger number of tables from different data sources in R and the matching criterium are country names. The tables are of different size and sometimes the country names do differ slightly. Has anyone done this or any recommendation on what commands I should look at to automize this task as much as possible? Thanks a lot for your effort in advance. All the best,...
2011 Jan 27
1
[LLVMdev] recreate optimized clang output
...e else" (externally), and the optimizer will find in some other module to possibly inline it later on. >> >> I am planning to concat all the *.ll (eg "link" the files) and pass them to the "global" optimizer, as "size" is a very important optimization criterium to me. After that, the back-end will be invoked. >> Is that a good approach? > > How about just add -O4 on clang (or llvm-gcc) command line to get LTO optimizations ? > See http://llvm.org/docs/LinkTimeOptimization.html > http://llvm.org/docs/GoldPlugin.html > On Mac OS X, i...
2009 Apr 06
2
GarchOxFit output
...ay. Best regards, Vasilios Ismyrlis GarchOxFit output No. Observations : 1000 No. Parameters : 2 Mean (Y) : -0.05511 Variance (Y) : 1.06869 Skewness (Y) : -0.01496 Kurtosis (Y) : 3.49490 Log Likelihood : -1453.572 Alpha[1]+Beta[1]: -0.00021 Information Criterium (to be minimized) Akaike 2.911144 Shibata 2.911136 Schwarz 2.920960 Hannan-Quinn 2.914875
2006 Feb 23
1
Which Quad Port FXO is Best?
...63 I know it would be cheaper to buy two more Sipuras, but it might be worth the extra $$ to cut down on the power adapters and have a centralized point of administration, especially if it didn't involve dozens of browser mouse clicks to 3 separate HTTP servers. Reliability is the primary criterium, though. Can anybody give any recommendations? And are these digium problems unusual?
2012 May 16
1
Optimization problem
...:3) { s <- x[i]^3 + s } s } optim(rep(4,3), method="L-BFGS-B", lower=rep(-10,nlin), upper=rep(10,nlin)) It would return '-10' for all variables. I want, however, a solution satisfying mean(x)>7. Please, don't analyse this specific example, but the logic of satisfying a criterium for the mean of the input (with thousands of variables). My real problem involves price elasticity and I want to find the price increase for each individual that would give me maximum total profit margin, but respecting a minimum retention of clients. Thank you very much, John Mayer -- View this...
2011 Apr 06
1
executing from .R source file in the src package
...nction. This is just lovely as I'm sure everyone knows. However, in case of a trace on function in a package (ie loaded from a .rdb/.rdx) there is no filename/linenum information probably because its not retained. i.e. it prints something like this: debugging in: train(net, P, target, error.criterium = "LMS", report = TRUE, Any way to work around this? Thanks for all insights. [[alternative HTML version deleted]]
2011 Jan 27
0
[LLVMdev] recreate optimized clang output
...uot; (externally), and the optimizer will find in some other module to possibly inline it later on. >>> >>> I am planning to concat all the *.ll (eg "link" the files) and pass them to the "global" optimizer, as "size" is a very important optimization criterium to me. After that, the back-end will be invoked. >>> Is that a good approach? >> >> How about just add -O4 on clang (or llvm-gcc) command line to get LTO optimizations ? >> See http://llvm.org/docs/LinkTimeOptimization.html >> http://llvm.org/docs/GoldPlugin.html...
2007 Dec 09
1
Setting the grid of a graph of timeseries
...") #################################################################### This code produces a graph with a non-decimal x-axis but by far more (human) readable because ticks corresponds to months exactly (and not to a weird decimal ticking!). I would like to add a vertical grid with the same criterium. How can I obtain this? Ciao Vittorio
2008 Mar 28
1
Singular Gradient in nls
//Referring to the response posted many years ago, copied below, what is the specific criterium used for singularity of the gradient matrix? Is a Singular Value Decomposition used to determine the singular values? Is it the gradient matrix condition number or some other criterion for determining singularity? // //Glenn // / / /> What does the error 'singular gradient' mean...
2007 Nov 11
0
Patch to sshd match
Please find attached a patch against openssh-4.7p1 It extends the Match in sshd_config. The point is that it is sometimes easier (and more secure) to match on NOT something. A criterium may be preceded by ! which inverts the condition, thus: Match !Group sysadmins ForceCommand /usr/bin/sftp forces use of sftp on any user who is not a system administrator. A !! has the same effect as no ! - but I didn't document that. I am looking at sftp, extend it:...
2011 Jan 26
0
[LLVMdev] recreate optimized clang output
On Jan 24, 2011, at 10:36 AM, Hendrix_ at gmx.net wrote: > I was using "clang -O3 -S -emit-llvm" got some very optimized output. > > Then I did "clang -S -emit-llvm" (without optimization) and wanted to optimized the code in a > separate pass. The llvm program "opt" did not do anything. > > How can I invoke the optimizer on some un-optimized