From awd at cs.cmu.edu Tue Oct 21 09:50:08 2008 From: awd at cs.cmu.edu (Artur Dubrawski) Date: Tue, 21 Oct 2008 09:50:08 -0400 Subject: [Research] Auton Lab meeting: Tuesday October 28th at 11:30am in NSH 1507 Message-ID: <48FDDE10.205@cs.cmu.edu> Hello, Please come to the first meeting of the new season. We will update each other on the lab affairs and on the ongoing projects, and we will share the info on what has happened since our last meeting. We will also meet new team members. The food will be provided. See you then! Artur From awd at cs.cmu.edu Sun Oct 26 16:24:30 2008 From: awd at cs.cmu.edu (Artur Dubrawski) Date: Sun, 26 Oct 2008 16:24:30 -0400 Subject: [Research] ROOM CHANGE Re: Auton Lab meeting: Tuesday October 28th at 11:30am in NSH 1507 In-Reply-To: <48FDDE10.205@cs.cmu.edu> References: <48FDDE10.205@cs.cmu.edu> Message-ID: <4904D1FE.8070503@cs.cmu.edu> Hello, This time, the Lab meeting will take place in Smith Hall room 100. Artur Artur Dubrawski wrote: > Hello, > Please come to the first meeting of the new season. > We will update each other on the lab affairs and on > the ongoing projects, and we will share the info on > what has happened since our last meeting. > We will also meet new team members. > The food will be provided. > See you then! > Artur > > _______________________________________________ > Research mailing list > Research at autonlab.org > https://www.autonlab.org/mailman/listinfo/research > > From psarkar at cs.cmu.edu Mon Oct 27 22:25:46 2008 From: psarkar at cs.cmu.edu (Purnamrita Sarkar) Date: Mon, 27 Oct 2008 22:25:46 -0400 (EDT) Subject: [Research] Question about timing a script Message-ID: <1890.128.2.192.44.1225160746.squirrel@webmail.cs.cmu.edu> Hi everyone! I am using a script which just calls an svm binary on a bunch of training and test files. I want to also record how much time the svm-routine took per training-test file. Is there a way to do that? Any help would be really really appreciated! :) Thanks, Purna ------------------------------------------ Example Script: for i in SetofNames do trainfile=x_i trainlabel=y_i testfile=z_i testlabel=w_i svmlin $trainfile $trainlabel > /dev/null svmlin -f training_examples.weights $testfile $testlabel done