search for: smo

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

Did you mean: smb
2007 Jul 11
2
RWeka control parameters classifiers interface
...# ------------- Examples file =system.file("arff","iris.arff",package="RWeka") data =read.arff(file=file) rownames(data)=1:nrow(data) colnames(data)[ncol(data)] ="class" library(RWeka) # Example: no parameter influence mySMO =make_Weka_classifier(name="weka/classifiers/functions/SMO",class=NULL,handlers=list()); # Using control =Weka_control() m1 =mySMO(formula=class~.,data=data[,],control=Weka_control(K="weka.classifiers.functions.supportVector.PolyKernel",E=2)) m2 =mySMO(formula=class~.,d...
2007 Aug 01
1
RWeka cross-validation and Weka_control Parametrization
Hello, I have two questions concerning the RWeka package: 1.) First question: How can one perform a cross validation, -say 10fold- for a given data set and given model ? 2.) Second question What is the correct syntax for the parametrization of e.g. Kernel classifiers interface m1 <- SMO(Species ~ ., data = iris, control = Weka_control(K="weka.classifiers.functions.supportVector.RBFKernel",G=0.1)) m2 <- SMO(Species ~ ., data = iris, control = Weka_control(K="weka.classifiers.functions.supportVector.RBFKernel",G=1.0)) > m1 SMO Kernel used: RBF ker...
2006 Apr 18
2
Unfound objects in function
...clude themselves, but if so I've no idea how I did or how I can cancel it! Thanks in advance, Colin library (spatstat) kernelEst <- function (data, max.r = 10, edge = TRUE) { if (!is.ppp (data)) stop ("data must be a point process object") i <- 0.1 diff <- 1 smo <- 1 while (diff > 0) { olddiff <- diff oldsmo <- smo smo <- density.ppp (data, sigma = 2 * i, edge = edge) lambda <- smo[data] Ki <- Kinhom (data[,data$window], lambda = lambda, r = seq (0, max.r, length = 100), correction = "trans&qu...
2016 Jun 29
0
[GSoC 2016] Implementation of the packing transformation
...CG (papers and slides below): http://impact.gforge.inria.fr/impact2016 > [2] - https://hal.archives-ouvertes.fr/hal-01257316/document That one is rather specific to parallel programs and also theoretical. State of the art: - POPL 2016 http://conf.researchr.org/event/POPL-2016/popl-2016-papers-smo-an-integrated-approach-to-intra-array-and-inter-array-storage-optimization http://dl.acm.org/citation.cfm?id=2837636 There is a tool available but it has received little publicity yet: https://github.com/bondhugula/smo Yet the input is in for of polyhedral sets/maps, not code. - CC 2016, Darte, I...
2016 Jun 28
2
[GSoC 2016] Implementation of the packing transformation
2016-06-27 15:52 GMT+05:00 4lbert C0hen <4lbert.h.c0hen at gmail.com>: > Dear Roman and all, > > Such features would be extremely useful to implement array expansion (scalar > and array renaming, privatization with new subscript expressions of higher > dimension) and storage mapping optimization (generalizing array > contraction). It would be interesting to have these
2006 Aug 14
6
Testing fails with fixtures not when invoked directly
I have three files organization.rb, company.rb, and department.rb. I want to ensure the department always has a company require File.dirname(__FILE__) + ''/../test_helper'' class OrganizationTest < Test::Unit::TestCase fixtures :organizations def setup @smo = organizations(:smo) end def test_department_company_defaults_to_parent org = Department.new(:name => ''company'',:cost_code => ''123'', :parent_id => organizations(:root_dept)) assert org.valid? assert org.company_id = organizations(:root_de...
2010 Jul 31
3
a problem
...p-11.xls") ???list(df = df, datafile = datafile, codefile = codefile) : ??'datafile' > write.foreign("exp-11.xls") ???list(df = df, datafile = datafile, codefile = codefile) : ??'datafile' > mydata<-scan("exp-11.xls",what=list(sex="",smo="",comp="",TNum="",TG="",Endo="",Y="",HeT="",Year="",TuS="") + + + mydata ??: ????? ? "mydata" > mydata ??: ?????'mydata' Can you tell me why the R project can't read the file,thank...
2012 Feb 09
1
Tr: Re: how to pass weka classifier options with a meta classifier in RWeka?
...e RWeka documentation how the > passing mechanism of Weka_control is supposed to work with meta > classifiers. All help is greatly appreciated. I've never tried it myself, but ?Weka_control says: ? ? One can use lists for options taking multiple arguments, see the ? ? documentation for ?SMO? for an example. So maybe nb.model<-AS(class~.,data=ex, ? ? ? ? ? ? ? ? ? ? ? ? ? control=Weka_control( ? ? ? ? ? ? ? ? ? ? ? ? ? ?E="weka.attributeSelection.CfsSubsetEval", ? ? ? ? ? ? ? ? ? ? ? ? ? ?S=list("weka.attributeSelection.BestFirst, D=1), ? ? ? ? ? ? ? ? ? ? ? ? ?...
2007 Sep 19
3
ZFS panic when trying to import pool
...fff008df47e00, ffffff008f722a10, ffffff008f260a80) dsl_pool_sync+0xb5(ffffff00882fb800, 3fd0f1) spa_sync+0x1c5(ffffff008f2d1a80, 3fd0f1) txg_sync_thread+0x19a(ffffff00882fb800) thread_start+8() And here is the panic message buf: panic[cpu0]/thread=ffffff0001ba2c80: assertion failed: dmu_read(os, smo->smo_object, offset, size, entry_map) == 0 (0 x6 == 0x0), file: ../../common/fs/zfs/space_map.c, line: 339 ffffff0001ba24f0 genunix:assfail3+b9 () ffffff0001ba2590 zfs:space_map_load+2ef () ffffff0001ba25d0 zfs:metaslab_activate+66 () ffffff0001ba2690 zfs:metaslab_group_alloc+24e () ffffff0001...
2002 Nov 08
1
pdf() and pdflatex
...the graph on a later page, when the current page has plenty of space. Here is how I typically call pdf( ): pdf(filename, width=5.333, height=4, pointsize=10,family='Helvetica',onefile=FALSE) par(lwd = lwd, mgp = c(2.5, .6, 0), mar = c(3.5, 3.5, 1, 1) + 1.e-10, bty='l') par(smo=0) plot( . . .) dev.off() Here is how I include the graphics file in LaTeX: \usepackage{graphics} ... \begin{figure}[hb]\leavevmode\centerline{\includegraphics{mygraph.pdf}} \caption{A caption} \label{fig:mygraph} \end{figure} I need onefile=FALSE because some of the high-level graphics commands...
2017 Mar 03
2
Control statements with condition with greater than one should give error (not just warning) [PATCH]
...el thread 'vector arguments to if()'; https://stat.ethz.ch/pipermail/r-devel/2002-November/025537.html). Below is patch (also attached) that introduces option 'check.condition' such that when TRUE, it will generate an error rather than a warning (default). This option allows for a smooth migration as it can be added to 'R CMD check --as-cran' and developers can give time to check and fix their packages. Eventually, check.condition=TRUE can become the new default. With options(check.condition = TRUE), one gets: > x <- 1:2 > if (x == 1) message("x == 1&quo...
2014 Mar 20
2
[LLVMdev] load bytecode from string for jiting problem
Hello Willy, Here is the dump from one of my bitcode files: 0000000 42 43 c0 de 21 0c 00 00 25 05 00 00 0b 82 20 00 As expected, 0x42 (= B), 0x43 (= C), xc0 and 0xde are in correct order. In your case, the first byte is read as 37 (= 0x25). I wonder why? When you check the bytes yourself, you get expected results. When the same bytes are read from Stream object, you get a different result (maybe
2007 Feb 08
1
supsmu(periodic=TRUE) can crash R by reading before start of array (PR#9502)
...) yy <- rnorm(29000) span <- 0.49 i <- 1 while(i < 200){ cat(i,"\n") int <- supsmu(xx,yy,periodic=T,span=span) i <-i+1 } results in: 1 2 3 4 5 6 7 8 9 Program received signal SIGSEGV, Segmentation fault. smooth_ (n=0xffffeffe, x=0xb6a7f020, y=0xb6993020, w=0xb6921020, span=0xffffeffe, iper=0xffffeffe, vsmlsq=0xffffeffe, smo=0xb68e8020, acvr=0x9c7e7c8) at ppr.f:1087 1087 xti=x(j) Current language: auto; currently fortran (gdb) list 1082 if (ibw.lt.2) ibw=2...
2017 Mar 03
0
Control statements with condition with greater than one should give error (not just warning) [PATCH]
...ble combinations of these options set ---- I am sure you would not want this. No --- don't even think of allowing an option for something such basic! Martin Maechler ETH Zurich (and R Core) > it will generate an error > rather than a warning (default). This option allows for a smooth > migration as it can be added to 'R CMD check --as-cran' and developers > can give time to check and fix their packages. Eventually, > check.condition=TRUE can become the new default. > With options(check.condition = TRUE), one gets: >> x <- 1...
2006 Aug 10
1
Can't join a computer to my Samba PDC.
...nection to the # # If you don't want to use auto-mounting/unmounting make sure the CD # is mounted on /cdrom # ; preexec = /bin/mount /cdrom ; postexec = /bin/umount /cdrom smbusers ####################################################################### root = Administrator bc = bc smo = smo dhcpd.conf (extract) option domain-name "test.domain.com"; option nis-servers 192.168.200.1; option nis-domain "test.domain.com"; option domain-name-servers 192.168.200.1; option netbios-name-servers 192.168.200.1; option ntp-servers 192.168.200.1; option netbios-node-ty...
2016 Apr 22
0
GM108GLM?
Hello, A patch was merged yesterday to recognise GM108 (see https://github.com/skeggsb/nouveau/commit/3da1f2a19e5e8dc8d68a4400d9cca01c64ecd59e). I guess it will make it into 4.7. Pierre On 12:14 PM - Apr 18 2016, Sune Mølgaard wrote: > Is there anything I can do in this regard? > > /smo > > On 2016-03-31 23:12, Pierre Moreau wrote: > > Oh, hum, GM108 is NV118 and not NV108 which is Gk208… My bad! > > > > SMF from the bug report seemed to have some working setup, and since he didn't > > pinged back, I guess it's working nicely. But some more...
2015 Aug 21
0
plugin antispam sa-learn run program failed with exit code -1
...QKTywf/dhX5NOxUTjLQXIVAI+iOyyvLuncrG4q1 B3HMhGhRjAfGX5nvJnzSI+YFn/PTaZyrs1B8gjaNz4VyW54GcSqUiycG3NZGAv6x uLd1cjIY9UFVl2VB1uyUitVWmioNrsXzq07I5iKf9XT6h4B0XyIVCKHCWt7t9vCc HesPN+Eu6fFSRXNeP1u8Qded/iyAD4Qd/AodIBwcO1gSNgjMhrDF9phYJZHFudLZ HlMvC2SOPB3TDNUdYqdK2ZDS8v7zN6wsKrxEQorWGoqv1vRDRBczm7h+oTSmI0T9 sMo/lHtrWY19As4t9ghr3sBjpwHr+fcQnV3gAkk+x9qHCCKxjT68gw== =Hfaj -----END PGP SIGNATURE-----
2003 Sep 19
0
Saludos desde Madrid
...o Ver?nica. Te escribo desde Madrid, Espa?a y formo parte de un equipo del Movimiento Humanista. Hoy son ya millones de personas las que experimentan c?mo la sociedad en que vivimos se deshumaniza d?a a d?a. El ser humano ha perdido todo valor, el mundo se mueve en torno al dinero y en base al ego?smo, mientras las personas van quedando cada vez m?s desamparadas. De este modo, mientras cada uno est? preocupado de sus propios problemas, todos vivimos cada vez peor. Sin embargo los humanistas sabemos que el absurdo de la globalizaci?n dirigida, pensada s?lo en t?rminos econ?micos por los grandes...
2008 Apr 14
0
how to make lien smoothly over barplot
Dear I try to make lines smoothly which are added on current barplot. I tried to use "smo" and it does not work. Has nayone have this experience? Many Thanks! Xin [[alternative HTML version deleted]]
2007 Feb 19
0
supsmu produces segfault when handed all NAs. (PR#9519)
...all NAs tmp <- supsmu(x,y); # oops *** caught segfault *** address 0xfffffff8, cause 'memory not mapped' Traceback: 1: .Fortran(R_supsmu, as.integer(leno), as.double(xo), as.double(y[ord]), as.double(wt[o rd]), as.integer(iper), as.double(span), as.double(bass), smo = double(leno), double(n * 7 ), double(1)) 2: supsmu(x, y) Possible actions: 1: abort (with core dump) 2: normal R exit 3: exit R without saving workspace 4: exit R saving workspace Selection: --please do not edit the information below-- Version: platform = i686-pc...