search for: lrn

Displaying 20 results from an estimated 88 matches for "lrn".

Did you mean: len
2004 May 21
1
Bug in update()? (PR#6902)
...itting log-linear models to contingency tables using R 1.8.1, but the problem also exists under R 1.9.0. A reproducible example uses the following contingency table: > library(MASS) > data(quine) > tmp <- with(quine, expand.grid(Eth=levels(Eth), Sex=levels(Sex), + Lrn=levels(Lrn), Age=levels(Age))) > n <- nrow(quine) > quine2 <- with(quine, + data.frame(tmp, + Count=as.vector(tapply(rep(1,n), list(Eth, Sex, Lrn, Age), sum)))) First fit a saturated model and see which term we can drop: > fm <- glm(Count ~ .^4, quine2, family=poi...
2016 Mar 18
3
Incoming INVITE with Portability Info and LRN
On Fri, 18 Mar 2016, Trey Hilyard wrote: > I thought this would be as easy as > exten => _XXXXXXXXXX\;rn=+19136630000,1,Goto(from_pstn,${EXTEN:0:10}) Have you tried the '_!.' pattern? -- Thanks in advance, ------------------------------------------------------------------------- Steve Edwards sedwards at sedwards.com Voice: +1-760-468-3867 PST
2000 Aug 01
0
anova() on three or more objects behaves inconsistently (PR#621)
...pairwise differences between the models, considered sequentially from first to last. neither of which are clear enough to disambiguate this. Example: library(MASS) data(quine) quine.hi <- aov(log(Days + 2.5) ~ .^4, quine) quine.nxt <- update(quine.hi, . ~ . - Eth:Sex:Age:Lrn) quine.lo <- aov(log(Days+2.5) ~ 1, quine) anova(quine.hi, quine.nxt, quine.lo) quine.hi1 <- glm(log(Days + 2.5) ~ .^4, data=quine) quine.nxt1 <- update(quine.hi1, . ~ . - Eth:Sex:Age:Lrn) quine.lo1 <- glm(log(Days+2.5) ~ 1, data=quine) anova(quine.hi1, quine.nxt1, quine.lo1, test=&quo...
2016 Mar 18
2
Incoming INVITE with Portability Info and LRN
I am trying to set up my Asterisk server so that it will recognize an incoming call to the Asterisk's own Location Routing Number (LRN), validating the "rn" in the INVITE and then using the Called Number from the INVITE as the extension in the dialplan. The INVITE R-URI looks like: INVITE sip:+19135041291;rn=+19136630000;npdi at 12.4.240.200:5060;user=phone;transport=udp SIP/2.0 The +1913663000 is the LRN of the Asteri...
2020 Jan 03
2
A modern object-oriented machine learning framework in R
...La situación es la siguiente: library(ranger) library(mlr3) task_iris <- TaskClassif$new(id = "iris", backend = iris, target = "Species", positive = NULL) # learner <- lrn("classif.rpart", cp = 0.01) learner <- lrn("classif.ranger", cp = 0.01) De forma que, no entiende, no halla, "classif.ranger". Lo cual no ocurre con "classif.rpart". Si bien es el que usa en el ejemplo de CRAN. No veo dónde es...
2020 Jan 04
2
A modern object-oriented machine learning framework in R
Estimadísimo Carlos: Muchísimas gracias por responderme y hacerlo tan rápido. Contemplé esa posibilidad, es decir, que el hiperparámetro estuviera suponiendo un problema, y probé de esta forma: > learner <- lrn("classif.ranger", num.trees = 5, mtry = NULL) Error: Element with key 'classif.ranger' not found in DictionaryLearner! Pero obtuve el mismo error. Como muestro. Reconozco el error de imprecisión al plantear la duda, por no poner esta experiencia....
2016 Mar 18
2
Incoming INVITE with Portability Info and LRN
On Fri, Mar 18, 2016 at 10:49 AM Administrator TOOTAI <admin at tootai.net> wrote: > Le 18/03/2016 16:20, Trey Hilyard a ?crit : > > I am trying to set up my Asterisk server so that it will recognize an > > incoming call to the Asterisk's own Location Routing Number (LRN), > > validating the "rn" in the INVITE and then using the Called Number from > > the INVITE as the extension in the dialplan. > > > > The INVITE R-URI looks like: > > INVITE > > sip:+19135041291;rn=+19136630000;npdi at 12.4.240.200 > :5060;user=phon...
2012 Aug 20
1
Combining imputed datasets for analysis using Factor Analysis
...rtment Helderberg College South Africa Additional info: R version 2.15.1 (2012-06-22) -- "Roasted Marshmallows" Running on Linux version 3.3.8-gentoo (root at PsychStat) (gcc version 4.5.3 (Gentoo 4.5.3-r2 p1.5, pie-0.4.7) ) Script for multiple imputation: > var.info <- mi.info(LRN) > var.info > var.info <- update(var.info, "type", list("LRN1" = "ordered-categorical", "LRN2" = "ordered-categorical", "LRN3" = "ordered-categorical", "LRN4" = "ordered-categorical", "LRN5&q...
2013 Mar 18
0
flac-dev Digest, Vol 100, Issue 42
...; 1. Re: MSVC project updates (Erik de Castro Lopo) > 2. Re: Patch to add Unicode filename support for win32 flac (JonY) > 3. Re: Patch to add Unicode filename support for win32 flac > (Erik de Castro Lopo) > 4. Re: Patch to add Unicode filename support for win32 flac (LRN) > 5. Re: Patch to add Unicode filename support for win32 flac (LRN) > 6. Re: Patch to add Unicode filename support for win32 flac > (Brian Willoughby) > 7. Re: Patch to add Unicode filename support for win32 flac > (Erik de Castro Lopo) > 8. Re: Patch to a...
2013 Mar 06
2
Answering the Hydrogen Audio thread
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 05.03.2013 20:39, Ben Allison wrote: > I would be willing to add Windows Unicode support (and large file > mode) to the flac binary tool, but frankly I'm not sure that it > could be done as a single cross-platform source file. There would > be a significant amount of either Windows API function calls or > MSVC-specific
2009 Mar 21
1
Goodness of fit for negative binomial model
Dear r list,   I am using glm.nb in the MASS package to fit negative binomial models to data on manta ray abundance, and AICctab in the bbmle package to compare model IC.  However, I need to test for the goodness of fit of the full model, and have not been able to find a Pearson's Chi Squared statistic in any of the output.  Am I missing it somewhere?  Is there a way to run the test using
2013 Apr 06
2
Don't hate yourself anymore, brendan
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 These patches to libshout and shout.m4 reduce the level of self-hatred significantly. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJRX7anAAoJEOs4Jb6SI2Cw2VgH/RDFPJjXdds1Cq3c0QyVyWs4 JWhPw2SI4vNGHF6U2q/DJQeBtsyY5BiUGckdew8skR5q0qc3D7iqBG5kiSC+G3Aq
2013 Mar 18
1
Patch to add Unicode filename support for win32 flac
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 18.03.2013 02:10, JonY wrote: > On 3/17/2013 23:01, LRN wrote: >>> All those ifdefs will at least be confined rather than spread >>> out through the code. >> I did it plibc-style: >> >> in compat.h: #if defined(_WIN32) #define FOPEN >> grabbag__fopen_utf8_wrapper #else #define FOPEN fopen #endif >> >&...
2015 Dec 10
5
Windows file buffering
...477774f56b4fe7ccab525cad2ceab244b8a> the current code: #ifdef _WIN32 /* * Windows can suffer quite badly from disk fragmentation. This can be * reduced significantly by setting the output buffer size to be 10MB. */ setvbuf(file, NULL, _IOFBF, 10*1024*1024); #endif LRN <lrn1986 at gmail.com> wrote: > The commit mentioned in the feature request should not cause such > behaviour, as it only does short-lived operations (opens a file, does > stuff, closes the file immediately after) and is clearly distinguishing > between disk files and pipes (whic...
2013 Apr 28
1
flac-dev Digest, Vol 101, Issue 24
...; than "Re: Contents of flac-dev digest..." > > Today's Topics: > > 1. Pre-release 1.3.0pre4 (hopefully the last) (Erik de Castro Lopo) > 2. Re: Pre-release 1.3.0pre4 (hopefully the last) (Janne Hyv?rinen) > 3. Re: Pre-release 1.3.0pre4 (hopefully the last) (LRN) > > > ---------- Forwarded message ---------- > From: Erik de Castro Lopo <mle+la at mega-nerd.com> > To: flac-dev at xiph.org > Cc: > Date: Sun, 28 Apr 2013 19:38:45 +1000 > Subject: [flac-dev] Pre-release 1.3.0pre4 (hopefully the last) > Hi all, > > I have...
2013 Mar 17
3
Patch to add Unicode filename support for win32 flac
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 17.03.2013 18:55, JonY wrote: > On 3/17/2013 18:37, Erik de Castro Lopo wrote: >> JonY wrote: >> >>> On 3/17/2013 10:33, Janne Hyv?rinen wrote: >>>> Here's a patch that makes MSVC compiled flac.exe able to use >>>> wildcards and encode/decode files with Unicode characters in >>>>
2013 Mar 14
2
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote: > The patch was made from the published pre2 version. It missed the MinGW > changes that were applied to git version. Patch applied. Thanks. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2013 Mar 17
1
Patch to add Unicode filename support for win32 flac
JonY wrote: > On 3/17/2013 23:01, LRN wrote: > >> All those ifdefs will at least be confined rather than spread out > >> through the code. > > I did it plibc-style: > > > > in compat.h: > > #if defined(_WIN32) > > #define FOPEN grabbag__fopen_utf8_wrapper > > #else > > #defi...
2013 Mar 18
1
Patch to add Unicode filename support for win32 flac
On 3/18/2013 19:34, LRN wrote: > On 18.03.2013 13:35, JonY wrote: >> Before anyone does anything, see __wgetmainargs >> <http://msdn.microsoft.com/en-us/library/ff770599.aspx>. > >> It can expand wildcards. Since it already provides argc/argv/env, >> it is more a less a drop-in replac...
2013 Apr 01
1
flac 1.3.0pre3 pre-release
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 01.04.2013 16:24, Janne Hyv?rinen wrote: > I'm worried about some of the modifications done to the UTF-8 > patch. In commit 2199d086921eb37d249cae0731f334556ec6209d #ifdef > checks were changed from specific FLAC__STRINGS_IN_UTF8 to generic > _WIN32 and the specific defines were later removed in commit >