search for: worsening

Displaying 20 results from an estimated 86 matches for "worsening".

Did you mean: loosening
2019 May 27
0
[R] Increasing number of observations worsen the regression model
Yes, it is important that it only happens with certan BLAS, so probably not really an R issue. However, there has been some concern over the C/Fortran interfaces lately, so if you could narrow it down to a specific BLAS routine, it could prove useful for the developers. One fairly easy thing to do would be to find the breakdown point. I speculate that it could be at 16384 (=2^14) and that some
2004 Jan 29
5
Echo worsens in 0.7.1
Just updated from CVS 12-23-03 to tarbal 0.7.1. Identical settings in zconfig.h for echo cancellation (MARK2, aggressive OFF). The echo got worse, much worse. It takes longer to train and overspeak now disables cancellation, which it did not before. In fact, I now have echo on VoIP to VoIP on our local network, which I never had before. Was something changed with the echo supression which
2019 May 25
3
Increasing number of observations worsen the regression model
I have the following code: ``` rm(list=ls()) N = 30000 xvar <- runif(N, -10, 10) e <- rnorm(N, mean=0, sd=1) yvar <- 1 + 2*xvar + e plot(xvar,yvar) lmMod <- lm(yvar~xvar) print(summary(lmMod)) domain <- seq(min(xvar), max(xvar))??? # define a vector of x values to feed into model lines(domain, predict(lmMod, newdata = data.frame(xvar=domain)))??? # add regression line, using
2014 Aug 26
0
Re: Progressively worsening unresponsiveness
On Mon, Aug 25, 2014 at 02:56:57PM -0600, Michael Warnecke wrote: >Hello all, I'm new to the list, and hoping someone can point me in the >right direction. > >I've got an Ubuntu 14 dom0 with, what I think, are excellent specs. 12 >cores, hyperthreaded, VT, 64GB RAM, gobs of disk, etc... all to run 8 >virtual machines (at the moment). > >My problem is each of the
2020 Jan 15
2
[cfe-dev] Phabricator -> GitHub PRs?
On Wed, 15 Jan 2020 at 17:47, Doerfert, Johannes <jdoerfert at anl.gov> wrote: > I'd say that helping people to improve their environment is better than > forcing others to worsen theirs. Note the difference: One side is trying to *help improve", while the other is *forcing to worsen*. This is really not helpful. --renato
2014 Aug 25
2
Progressively worsening unresponsiveness
Hello all, I'm new to the list, and hoping someone can point me in the right direction. I've got an Ubuntu 14 dom0 with, what I think, are excellent specs. 12 cores, hyperthreaded, VT, 64GB RAM, gobs of disk, etc... all to run 8 virtual machines (at the moment). My problem is each of the guests - Windows, Ubuntu, FreeBSD, starts out working fine. After several minutes, the guest
2014 Dec 03
7
[PATCH] Improve LPC order guess
Hi, This patch improves compression a very tiny bit on average, but up to 0.1 percentage point for classical music. I haven't found any tracks that show worsening compression with this patch. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Improve-LPC-order-guess.patch Type: text/x-patch Size: 0 bytes Desc: not available Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20141203/47b22333/attachment.bin
2009 Jun 22
2
Speech switching in speakerphone?
Hi Jean-Marc > Can you explain what you mean here by "speech switching" By speech switching I mean the adaption of "gain2" when near-end or far-end is talking. What is important is that the timing is good and that the gain is low/high while far/near-end is talking. By timing I mean that the "gain2" should remain low until all far-end talk is final and that the
2011 Dec 30
1
[LLVMdev] Safe Passes
Which transformation passes are 'safe', meaning it does not worsens the effectiveness of a later pass or the generated code? I imagine all passes which either removes data or add attributes are included in this list, plus some simplification passes: -adce -argpromotion -constmerge -constprop -deadargelim -dse -functionattrs -globaldce -globalopt -gvn -instcombine -internalize
2010 Apr 11
0
STALKER Clear Sky bugs: red grass, stretched textures, etc.
Wine 1.1.40, Nvidia 7900GS I'm running the game with a static lighting, had to do winetricks d3dx9, since it didn't start without native libraries (xrEngine.exe crashed with an irresponsible bug report window and "wine: Call from 0x7edd1137 to unimplemented function d3dx9_36.dll.D3DXDeclaratorFromFVF, aborting" message in the wine log). Not sure if it is a correct solution. The
2009 Jun 20
2
which server to make client and which the server for rsync.
I am using rsync to keep a mirror of my 800GB /home (server1). The backup machine is a separate server (servr2). Currently I am running rsync daemon on server2 and invoking rsync daily via cron on server2. Are there design / performance considerations that influence which machine is made the server and which the client? Also, Is the rsync daemon the preferred way to o this backup? I can also
2014 Jul 01
2
[RFC PATCH v2] Implement Batched (group) ticket lock
On 07/01/2014 01:35 PM, Peter Zijlstra wrote: > On Sat, Jun 28, 2014 at 02:47:04PM +0530, Raghavendra K T wrote: >> In virtualized environment there are mainly three problems >> related to spinlocks that affects performance. >> 1. LHP (lock holder preemption) >> 2. Lock Waiter Preemption (LWP) >> 3. Starvation/fairness >> >> Though Ticketlocks solve
2014 Jul 01
2
[RFC PATCH v2] Implement Batched (group) ticket lock
On 07/01/2014 01:35 PM, Peter Zijlstra wrote: > On Sat, Jun 28, 2014 at 02:47:04PM +0530, Raghavendra K T wrote: >> In virtualized environment there are mainly three problems >> related to spinlocks that affects performance. >> 1. LHP (lock holder preemption) >> 2. Lock Waiter Preemption (LWP) >> 3. Starvation/fairness >> >> Though Ticketlocks solve
2023 May 03
1
Inquiry about the behaviour of subsetting and names in matrices
Thank you for such a quick reply, here are some points that I think might have been missed: > I would state the question the other way : why are NAs integer indices allowed? > In my experience, they are sometimes useful but they often delay the detection of bugs. However, due to backward compatibility, this feature cannot be removed. Adding this feature to character indices would worsen the
2023 May 03
1
Inquiry about the behaviour of subsetting and names in matrices
Karolis wrote: > Hello, > I have stumbled upon a few cases where the behaviour of naming and subsetting in matrices seems unintuitive. > All those look related so wanted to put everything in one message. > 1. Why row/col selection by names with NAs is not allowed? > x <- setNames(1:10, letters[1:10]) > X <- matrix(x, nrow=2, dimnames = list(letters[1:2],
2005 Jun 28
1
[OT] Memory Models and Multi/Virtual-Cores -- WAS: 4.0-> 4.1 update failing
From: Robert Hanson <roberth at abbacomm.net> > or should i be more specific with the question(s)? > the reason i ask is that i just dumped 2 gig dram in a basic > P4 Intel 3.0GHz box to play with. > regards and TIA, At more than 1GiB on Linux/x86, you must use a 4G+4G kernel (this is the default) to see more than 960MiB. This causes a signficant (10%+) performance hit. On
2020 Jan 15
2
[cfe-dev] Phabricator -> GitHub PRs?
On Wed, 15 Jan 2020 at 10:47, Doerfert, Johannes <jdoerfert at anl.gov> wrote: > > I still find Phab to be inscrutable. I don't use any of its advanced > > features. I'm a long-time contributor. > > I asked a similar question in this thread in the very beginning: What > actual problems do you have with Phab? There might be usable solutions > out there
2007 Oct 25
4
ploting labels on barplot
Again me. I want to plot the numbers on the bars of a barplot. This can be done using hist function when setting the label argument true (i.e. data <- c(1,2,3,4) hist(data, labels=T) When I try this using barplot I get an error: > barplot(summary(data), labels=T) Error in axis(if (horiz) 2 else 1, at = at.l, labels = names.arg, lty = axis.lty, : formal
2010 Nov 03
2
CPU enumeration
Hello, Is it possible to alter how XCP enumerates multi-core cpu’s such that a Vcpu represents a “socket”, rather than a “core”? A server with dual quad core processors, no HT, presents each of the 8 cores as a Vcpu to the guest. Windows Server 2008 R2 see’s each Vcpu as a unique “socket” and we are therefore coming up against licensing issues with Windows and more importantly SQL Server 2008
2004 Jul 14
1
oh323 dial structure and oh323 debug?
According to the wiki at voip-info.org, the dial structure for using oh323 without a gatekeeper is: OH323/<exten>@<host>:<port> or OH323/<exten> The second option is valid only in the case where a gatekeeper is used. NOTE: OpenH323 library v1.12.0 has a bug in the parsing of the destination host. When this version is used then the above syntax should be: