search for: output_data

Displaying 8 results from an estimated 8 matches for "output_data".

2009 Aug 02
2
Strange column shifting with read.table
...data <- read.table("r_work/train_data.csv", header=T, sep=",", na.strings=0) When training an svm, I keep getting an error So, as an experiment, I wrote the data back out to a new file so that I could see what the svm function sees. write.table(rawdata, file="r_work/output_data.csv", quote=FALSE, sep=",") It appears as if R has added a column for me with id numbers for each row. That would be fine, except that R SHIFTS ALL MY COLUMN LABELS OVER ONE. That causes several problems: 1) The header names are now wrong for each column 2) My last co...
2003 Apr 17
2
Samba 2.2.8a Large File Support Issues
...GEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE" My local file system does appear to support large files. I created a 2.6Gig file and viewed it using ls just fine. The volume is mounted using the following command line: mount -t smbfs -o username=********,password=******** //powervault/output_data /mnt/powervault/output_data Any assistance would be most appreciated. -- Bob McLaren
2008 Oct 07
2
Decoding multiple encoded frames
Hi, I've been looking at using speex over RTP. Section 3.3 of draft-ietf-avt-rtp-speex-05 states that: "For the purposes of packetizing the bit stream in RTP, it is only necessary to consider the sequence of bits as output by the Speex encoder [speex_manual], and present the same sequence to the decoder." So, I assume that I just pass the whole contents of the RTP packet (less the
2006 Sep 12
2
Generate JS from RoR - strange delay with send_data
...... normal TCP teardown follows 29 seconds ! Am I doing something wrong? My action looks like (I''ve removed real JS since it is not problem with generation of JS only with sending): def show_route Point.find(:all, :conditions => [ "route_id = ?", pid]).each {|x| output_data<< GENERATE_JS_CODE_FROM_POINTS } send_data(output_data, :content => "text/javascript") end I''m using Rails 1.1.6. Or maybe there is some other way to generate ''custom'' JS not in .rhtml? Best regards, Witold Rugowski http://nhw.pl/ -- Poste...
2008 Oct 07
0
Decoding multiple encoded frames
...it can be determined how many bytes the > decoder has consumed, and hence how many remain in the input buffer. The decoder will return -1 if it can't decode anything else, so you just do something like: while(1) { err = speex_decode_int(state, bits, pcm); if (err==-1) break; output_data(pcm); } Cheers, Jean-Marc
2003 Sep 10
0
[Ffmpeg-devel] libavcodec/vp3.c compile problem (fwd)
...D variant exposes _A ... _G I have no idea but the work around is either to change the names or to change vp3.c like this: --- libavcodec/vp3.c.dist Wed Sep 10 11:23:12 2003 +++ libavcodec/vp3.c Wed Sep 10 12:55:44 2003 @@ -311,6 +311,25 @@ int32_t *ip = intermediate_data; int16_t *op = output_data; +#ifdef _A +#undef _A +#endif +#ifdef _B +#undef _B +#endif +#ifdef _C +#undef _C +#endif +#ifdef _D +#undef _D +#endif +#ifdef _G +#undef _G +#endif +#ifdef _H +#undef _H +#endif + int32_t _A, _B, _C, _D, _Ad, _Bd, _Cd, _Dd, _E, _F, _G, _H; int32_t _Ed, _Gd, _Add, _Bdd, _Fd, _Hd;...
2017 Sep 22
3
gtk3 update causing havoc
On my lab systems, the automatic updates were failing because of the problems with ipod libraries from EPEL being in the way. It turns out that was a good thing, because when I "fixed" it, a massive set of packages was updated, including the new gtk3. These packages are the ones causing problems, I think. gtk3-3.22.10-4.el7.x86_64 gtk3-devel-3.22.10-4.el7.x86_64 In the release notes,
2008 Oct 09
2
Decoding multiple encoded frames
Jean-Marc Valin wrote: > > > The decoder will return -1 if it can't decode anything else, so you just > do something like: > > while(1) { > err = speex_decode_int(state, bits, pcm); > if (err==-1) > break; > output_data(pcm); > } I think I still didn't fully understand. As a test I encoded some frames (wideband, with quality set to 8), each were 70 bytes. I then did three things: - passed half of it to the decoder - passed exactly one frame to the decoder - I passed two concatenated frames to the decod...