Displaying 16 results from an estimated 16 matches for "minin".
Did you mean:
mini
2011 Apr 08
1
multinom() residual deviance
...nning a multinomial model on that data (multinom, nnet)
reveals a residual deviance:
summary(multinom(y ~ ., data=df))
On page 203, the MASS book says that "here the deviance is
comparing with the model that correctly predicts each person, not
the multinomial response for each cell of the mininal model",
followed by and instruction how to compare with the saturated
model.
For me as a beginner, this sounds like an important warning,
however, I don't know what the warning exactly means and hence do
not know what the difference between the residual deviance of the
former (bina...
1998 Jun 19
2
R-beta: INSTALL
A non-text attachment was scrubbed...
Name: not available
Type: text
Size: 1515 bytes
Desc: not available
Url : https://stat.ethz.ch/pipermail/r-help/attachments/19980619/2b2103c8/attachment.pl
2012 Feb 07
5
[PATCH] Remove even more CPP hackery
On 02/07/12 12:03 am, Erik de Castro Lopo wrote:
> Dave Yeo wrote:
>
>> This commit will break OS/2's EMX 0.9d library (GCC 2.8.1) which has been
>> been replaced by klibc. Considering the age of EMX and lack of testing
>> and that klibc contains so many improvements I think this is exceptable.
>
> Sorry Dave, I can't do that. Or rather sorry, the patch
2012 Feb 08
0
[PATCH] Remove even more CPP hackery
...e best solution is to just remove all the CPP hackery
and assume that a C99 <stdint.h> is available. THis would then
make it incumbent on any developer that includes (either directly
or indirectly) include/FLAC/ordinals.h to include some version
of <stdint.h> first, even if it is just a mininal one with
typedefs for the minimal set of sized ints.
Does that make sense?
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
http://www.mega-nerd.com/
2012 Feb 09
1
[PATCH] Remove even more CPP hackery
...o just remove all the CPP hackery and
> assume that a C99 <stdint.h> is available. THis would then make it
> incumbent on any developer that includes (either directly or
> indirectly) include/FLAC/ordinals.h to include some version of
> <stdint.h> first, even if it is just a mininal one with typedefs
> for the minimal set of sized ints.
>
> Does that make sense?
>
Yes that makes sense. Requiring a C99 compliant compiler seems quite
reasonable.
Dave
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (OS/2)
Comment: Using GnuPG with Mozilla - http://enigmail.m...
2008 Jun 03
0
[PATCH]Improve HPET comparator reprog to prevent intr-near-missing case
HPET intr-near-missing means if the current counter value is too close
to the comparator value to be reprogrammed the expected HPET intr may be
missing. Linux kernel uses a mininal 48-hpet-ticks(~3.5us) distance to
workaround this, but personal observation showed there is still failure
case while delta=0xba (~13.5us). So choosing 20us as the MIN_DELTA_NS
should be helpful to prevent near-missing from happening.
local_irq_save/restore were used to avoid disturbance. (+ 2) w...
2005 Nov 03
1
Network Install Problems
Installation over the network has seemingly failed, for the second time.
Everything goes smoothly until about 1/3 to 1/2 of the way through the
downloading packages stage, at which point it hangs (both times its been
8% through a package, not sure if this is of any significance, 1st time
cups and now gawk).
I set the install to look on the mirror.centos.org site and use the
centos/4/os/i386
2006 Jan 05
3
Using STL containers in R/C++
Hi All,
I am in the process of writing an R extension in c++ and am using several
STL containers (e.g., vector<double>, map<int, double>, multimap<int,
double>). I make sure to clear all these containers at the end of the
.Call. Everything compiles and runs just fine, but I'm a bit worried
since I haven't found any other packages that use STL.
So, my question: is it
2019 Aug 05
0
problems with authentication
...erver hostname ),
with SSO and squid kerberos auth on Debian Buster. My new setting/setup for it.
Use this, i find this is the most easy way to setup squid + kerberos SSO auth and winbind
Minimal to install : winbind squid krb5-user
You need SSO logins ( ssh )
Enable : in /etc/ssh/sshd_config ( mininal )
# GSSAPI options
GSSAPIAuthentication yes
#(optional)
GSSAPICleanupCredentials yes
GSSAPIStrictAcceptorCheck yes
( kerberos auth in squid )
kinit Administrator
export KRB5_KTNAME=FILE:/etc/squid/HTTP-$(hostname -s).keytab
net ads keytab ADD HTTP/$(hostname -f)
chmod 640 krb5-squid-HTTP-$(ho...
2016 Jun 10
2
Windows: How to catch C++ exceptions in runtime-compiled code?
HI all,
Here in the JUCE team, we are working on porting the Projucer <https://www.juce.com/releases/projucer-juce-4> C++ live coding engine to Windows. Our main challenge now is how to catch C++ exceptions in runtime-compiled code on Windows. This doesn’t work for us and we’re quite stuck at this point.
I recently had a chat about this with Chandler Carruth at C++Now. Chandler suggested
2017 Oct 03
2
Clang/LLVM JIT - When to use "registerEHFrames()"
...s an interesting restriction. :/
> Does it prohibit exceptions thrown in JIT'd code from being caught also in
> JIT'd code, or does it only apply if an exception crosses the boundary back
> into statically compiled code?
> Do you know how they were enforcing that?
>
> Igor Minin explained this was due to Data Execution Prevention (DEP) and
> gave pointers to the involved functions in the OS runtime:
> http://lists.llvm.org/pipermail/llvm-dev/2016-June/100901.html
>
> The whole thing gets hairy quickly. It seems like a combination of multiple
> problems. So l...
2017 Oct 04
3
Clang/LLVM JIT - When to use "registerEHFrames()"
...in JIT'd code from being caught also
>> > in
>> > JIT'd code, or does it only apply if an exception crosses the boundary
>> > back
>> > into statically compiled code?
>> > Do you know how they were enforcing that?
>> >
>> > Igor Minin explained this was due to Data Execution Prevention (DEP) and
>> > gave pointers to the involved functions in the OS runtime:
>> > http://lists.llvm.org/pipermail/llvm-dev/2016-June/100901.html
>> >
>> > The whole thing gets hairy quickly. It seems like a combina...
2017 Sep 29
2
Clang/LLVM JIT - When to use "registerEHFrames()"
Hi Bjoern,
I'm trying to make exceptions run. I have an Object file with a function,
> throwing a 1 and a second function which should catch the 1. Normal JITTING
> under Windows showed me, that I have an unresolved reference to the virtual
> table of type_info. Some experiments later I was able to load "msvcrt.lib"
> as an archive and could resolve the reference. Nice -
2019 Aug 04
5
problems with authentication
Hi,
I set up a samba 4 in Debian 9.9 as a Domain member server, but
authentication is not working as follows:
root at srv-proxy:/etc/samba# wbinfo -a marcio at EMPRESA.COM.BR
Enter marcio at EMPRESA.COM.BR's password:
plaintext password authentication succeeded
Enter marcio at EMPRESA.COM.BR's password:
challenge/response password authentication failed
wbcAuthenticateUserEx(+marcio at
2017 Sep 28
0
Clang/LLVM JIT - When to use "registerEHFrames()"
> I tried loading the "msvcrt.lib" as a archive. That was... a bad idea!
> I get a Exception while loading:
> Assertion failed: ((int64_t)Result <= INT32_MAX) && "Relocation
> overflow", file
> \lib\executionengine\runtimedyld\Targets/RuntimeDyldCOFFX86_64.h, line 81
It's a limitation of the COFF/PE format and unrelated to exceptions.
This patch
2006 Apr 17
6
Re:Problems in Dead Gateway Detection / Failover - MultipleISP Links
Hi There,
I am also trying to do the same for my network.
I have two links from different ISPs and I want to configure a failover and
load balancing Linux router.
I am facing same problem here, that how to detect link failure and let Linux
box switch the gateway.
I know it works when the first gateway is physically down and not reachable.
But what to do if my link is up but there is problem