search for: pruned

Displaying 20 results from an estimated 966 matches for "pruned".

Did you mean: prune
2005 Jan 13
4
load object
Hi, I happen to re-write my codes to save memory and my approach is write my obj into file first and later I load it. However, it seems like: load(filename) can load the object but the function returns the name of the object instead of the reference to it. For example, I have an object called r0.prune, which is saved by save(r0.prune, file='r0.prune') and later, I want to load it by
2003 Dec 19
1
Question re labels in r-part (continuation of a thread from a while back)
...hat frame. So, I tried the following: {create the tree} tr.totpart <- rpart(log(totpart +1) ~ sexfact + age + windle + eabused + as.factor(pabau) + positive + controlling + lenient + druguse.ever + anycsw, xval = 10, cp = 0.000000001, data = duhray) {prune the tree} tr.totpart.pruned <- prune (tr.totpart, cp = .02) {ad the original metric to the frame} meanpart <- exp(tr.totpart.pruned$frame$yval)-1 tr.totpart.pruned$frame <- cbind(tr.totpart.pruned$frame, meanpart) and thought this was good because summary(tr.totpart.pruned$frame) lists meanpart as one of the co...
2016 Sep 20
2
-sanitizer-coverage-prune-blocks=true and LibFuzzer
Hello LLVM devs, I'm running lots of experiments with LibFuzzer these days -- it's an amazing tool! I've noticed something weird while examining the effect of various coverage options: for one of my benchmarks, the fuzzer was achieving a higher total coverage before April 2016, when -sanitizer-coverage-prune-blocks became true by default (commit
2007 Feb 15
2
Does rpart package have some requirements on the original data set?
Hi, I am currently studying Decision Trees by using rpart package in R. I artificially created a data set which includes the dependant variable (y) and a few independent variables (x1, x2...). The dependant variable y only comprises 0 and 1. 90% of y are 1 and 10% of y are 0. When I apply rpart to it, there is no splitting at all. I am wondering whether this is because of the
2016 Sep 21
3
-sanitizer-coverage-prune-blocks=true and LibFuzzer
Hello, Is this reproducible? > Fuzzing is a probabilistic business and one or even two runs don't prove > much. > I've reproduced the behavior on two different machines. Attached is a script to do so. To use the script, - create an empty folder and copy both prune-blocks.sh and ff-http-parser.sh in there - ensure clang and clang++ are in your $PATH - cd /path/to/prune-blocks.sh
2016 Sep 21
2
-sanitizer-coverage-prune-blocks=true and LibFuzzer
> On Sep 21, 2016, at 9:36 AM, Kostya Serebryany via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Exciting! > > (btw, I'd prefer libfuzzer at googlegroups.com <mailto:libfuzzer at googlegroups.com> for such discussions, please start new topics there) You mean a LLVM library has a separate mailing-list? Why? — Mehdi > > I can reproduce this too, but
2009 Jul 20
0
No subject
...specified) D N 0 > UNKNOWN Cached RT=20 > gerrie001/gerrie001 192.168.1.105 D N 5060 OK > (11 ms) Cached RT >=20 > I prune the realtime peers to no longer have gerrie002 in cache : >=20 > asterisk*CLI> sip prune realtime all > 3 peers pruned. > 2 users pruned. > [Mar 2 15:42:19] NOTICE[32498]: chan_sip.c:16612 sip_poke_noanswer: > Peer 'gerrie001' is now UNREACHABLE! Last qualify: 91 >=20 > The realtime peers are all gone : >=20 > asterisk*CLI> sip show peers > Name/username Host...
2016 Feb 03
2
delete directories with find and exclude other directories
On 02/03/2016 10:11 AM, m.roth at 5-cent.us wrote: > find . -type d ! -name logs -prune That will prune all of the directories whose name is not "logs", starting with "." So... not terribly useful.
2007 Jan 24
1
iax2 prun realtime peer only can't prune user
Hi All, I'm running 1.2.9.1. I can prune sip realtime peers and users and iax realtime peers but no command to prune iax realtime users. Was this implemented in a later version? Thanks. JR -- JR Richardson Engineering for the Masses
2018 May 08
2
Pruning a dendrogram based on frequencies
How can one prune a dendrogram (plot.dendrite, plotrix) based on a minimum level of frequencies?. Franklin.? [[alternative HTML version deleted]]
2016 Sep 21
2
-sanitizer-coverage-prune-blocks=true and LibFuzzer
> On Sep 21, 2016, at 12:56 PM, Kostya Serebryany <kcc at google.com> wrote: > > > > On Wed, Sep 21, 2016 at 12:32 PM, Mehdi Amini <mehdi.amini at apple.com <mailto:mehdi.amini at apple.com>> wrote: > >> On Sep 21, 2016, at 9:36 AM, Kostya Serebryany via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote:
2008 Jul 15
1
sip prune realtime per issue
...up again in "sip show peer xxxx", but everything is not being updated. The phone will not register even though the DB and the phone have the correct password. The only way to get it to register is to stop * and re-start it, then it works fine. I even tried changing the callerid and pruned the peer. A sip show peer shows the correct callerid, but when you call into voicemail, it is using the old callerid. Again, if I stop * and restart, it works fine. Has anybody seen this bug and if so, know what the bug ID is? We have a bunch of patches on these boxes and can't just upgr...
2008 Jul 30
5
History pruning
Hi, I find that a typical workflow for me looks something like this: 1) import some data from files 2) mess around with the data for a while 3) mess around with plotting for a while 4) get a plot or analysis that looks good 5) go back through my history to make a list of the shortest command sequence to recreate the plot or analysis 6) send out that sequence to colleagues, along with the
2016 Mar 11
5
RFC: Pass to prune redundant profiling instrumentation
There have been a lot of responses. I'll try to summarize the thread and respond to some of the questions/feedback. Summary ======= 1. We should teach GlobalDCE to strip out instrumented functions which the inliner cannot delete. 2. Sean suggests adding metadata to loads/stores of counters to convey that they do not alias normal program data. I'm not familiar with AA, but
2003 Aug 18
0
displaying pruned clusters
Any idea why clusters five and six fall off the scale in the following? library(cluster) library(maptree) data(flower) dfl2<-daisy(flower,type=list(asymm=c(1,3),ordratio=7)) hdfl2<-hclust(dfl2) prune.dfl2<-prune.clust(hdfl2,k=6) plot(prune.dfl2) Of course the following will display all six clusters, but without a scale: draw.tree(prune.dfl2) Best wishes, Mikkel Mikkel Grum
2010 Mar 04
2
--prune-empty-dirs option not doing the job
Hello and thanks to all who so generously assist on this great list. test command: rsync -avm --del --prune-empty-dirs --compare-dest=/Users/generic/Desktop/B /Users/generic/Desktop/A/ /Users/generic/Desktop/C produces a large number of directories and nested directories on the destination that are empty. i've tried tweaking so many different combinations of options i'm beginning to
2018 May 09
0
Pruning a dendrogram based on frequencies
Hi Franklin, plot.dendrite was not designed to be pruned. I have had a look at the problem, and I may be able to suggest a way to drop values in the "dendrite" object that is the input to plot.dendrite. I'll let you know. Jim On Tue, May 8, 2018 at 11:46 PM, Franklin Mairura via R-help <r-help at r-project.org> wrote: > How can...
2016 Feb 03
6
delete directories with find and exclude other directories
Hi all, I'm attempting to delete some directories and I want to be able to exclude a directory called 'logs' from being deleted. This is my basic find operation (without the exclusion) # find . -type d |tail -10 ./d20160124-1120-df8mfb/deployments ./d20160124-1120-df8mfb/releases ./d20160131-16993-vazqg5 ./d20160131-16993-vazqg5/metadata ./d20160131-16993-vazqg5/deployments
2015 Nov 20
2
Hexagon, DFAPacketzier and dependency pruning
DFAPacketizer has a virtual method isLegalToPruneDependencies(). I looked at the Hexagon code and but wasn't unable to understand the details (unfortunately as of now, I'm not well versed in the Hexagon architecture). Would anyone be able to shed light on what is dependency pruning and how it should be used? Any help is appreciated. --...
2014 Jul 29
2
[Bug 10748] New: 3.1.0 and 3.1.1 create all dirs on target even with --prune-empty-dirs
https://bugzilla.samba.org/show_bug.cgi?id=10748 Summary: 3.1.0 and 3.1.1 create all dirs on target even with --prune-empty-dirs Product: rsync Version: 3.1.1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org