You can subscribe to this list here.
2000 |
Jan
(8) |
Feb
(49) |
Mar
(48) |
Apr
(28) |
May
(37) |
Jun
(28) |
Jul
(16) |
Aug
(16) |
Sep
(44) |
Oct
(61) |
Nov
(31) |
Dec
(24) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(56) |
Feb
(54) |
Mar
(41) |
Apr
(71) |
May
(48) |
Jun
(32) |
Jul
(53) |
Aug
(91) |
Sep
(56) |
Oct
(33) |
Nov
(81) |
Dec
(54) |
2002 |
Jan
(72) |
Feb
(37) |
Mar
(126) |
Apr
(62) |
May
(34) |
Jun
(124) |
Jul
(36) |
Aug
(34) |
Sep
(60) |
Oct
(37) |
Nov
(23) |
Dec
(104) |
2003 |
Jan
(110) |
Feb
(73) |
Mar
(42) |
Apr
(8) |
May
(76) |
Jun
(14) |
Jul
(52) |
Aug
(26) |
Sep
(108) |
Oct
(82) |
Nov
(89) |
Dec
(94) |
2004 |
Jan
(117) |
Feb
(86) |
Mar
(75) |
Apr
(55) |
May
(75) |
Jun
(160) |
Jul
(152) |
Aug
(86) |
Sep
(75) |
Oct
(134) |
Nov
(62) |
Dec
(60) |
2005 |
Jan
(187) |
Feb
(318) |
Mar
(296) |
Apr
(205) |
May
(84) |
Jun
(63) |
Jul
(122) |
Aug
(59) |
Sep
(66) |
Oct
(148) |
Nov
(120) |
Dec
(70) |
2006 |
Jan
(460) |
Feb
(683) |
Mar
(589) |
Apr
(559) |
May
(445) |
Jun
(712) |
Jul
(815) |
Aug
(663) |
Sep
(559) |
Oct
(930) |
Nov
(373) |
Dec
|
From: Travis O. <oli...@ie...> - 2006-06-28 00:24:34
|
Dennis V. Perepelitsa wrote: > Hi, all. > > I've run some benchmarks comparing the performance of scipy, numpy, > Numeric and numarray vs. MATLAB. There's also the beginnings of a > benchmark framework included. The results are online at: > > http://web.mit.edu/jonas/www/bench/ > > They were produced on a Thinkpad T42 with an Intel Pentium M 1.7GHz > processor running Ubuntu Dapper Drake (6.06). All the languages/packages > were built from source, and, in the case of numpy and scipy, linked to > ATLAS. Each datapoint represents the arithmetic mean of ten trials. > I agree with Robert that a minimum would be a better way to aggregate results. > The results have some interesting implications. For example, numpy and > scipy perform approximately the same except when it comes to matrix > inversion, MATLAB beats out all the Python packages when it comes to > matrix addition, and numpy seems to be beaten by its predecessors in some > cases. Why is this the case? In terms of creating zeros matrices, you are creating double-precision matrices for NumPy but only single-precision for Numeric and numarray. Try using numpy.float32 or 'f' when creating numpy arrays. The float is the Python type-object and represents a double-precision number. Or, if you are trying to use double precision for all cases (say for comparison to MATLAB) then use 'd' in numarray and Numeric. For comparing numpy with numarray and Numeric there are some benchmarks in the SVN tree of NumPy under benchmarks. These benchmarks have been helpful in the past in pointing out areas where we could improve the code of NumPy, so I'm grateful for your efforts. -Travis |
From: Keith G. <kwg...@gm...> - 2006-06-27 23:55:55
|
On 6/27/06, Dennis V. Perepelitsa <dv...@mi...> wrote: > I've run some benchmarks comparing the performance of scipy, numpy, > Numeric and numarray vs. MATLAB. I enjoyed looking at the results. The most interesting result, for me, was that inverting a matrix is much faster in scipy than numpy. How can that be? I would have guessed that numpy handled the inversion for scipy since numpy is the core. The two calls were scipy.linalg.inv(m) and numpy.linalg.inv(m). |
From: Robert K. <rob...@gm...> - 2006-06-27 23:50:43
|
Dennis V. Perepelitsa wrote: > Hi, all. > > I've run some benchmarks comparing the performance of scipy, numpy, > Numeric and numarray vs. MATLAB. There's also the beginnings of a > benchmark framework included. The results are online at: > > http://web.mit.edu/jonas/www/bench/ > > They were produced on a Thinkpad T42 with an Intel Pentium M 1.7GHz > processor running Ubuntu Dapper Drake (6.06). All the languages/packages > were built from source, and, in the case of numpy and scipy, linked to > ATLAS. Each datapoint represents the arithmetic mean of ten trials. I have two suggestions based on a two-second glance at this: 1) Use time.time() on UNIX and time.clock() on Windows. The usual snippet of code I use for this: import sys import time if sys.platform == 'win32': now = time.clock else: now = time.time t1 = now() ... t2 = now() 2) Never take the mean of repeated time trials. Take the minimum if you need to summarize a set of trials. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco |
From: Dennis V. P. <dv...@MI...> - 2006-06-27 23:38:52
|
Hi, all. I've run some benchmarks comparing the performance of scipy, numpy, Numeric and numarray vs. MATLAB. There's also the beginnings of a benchmark framework included. The results are online at: http://web.mit.edu/jonas/www/bench/ They were produced on a Thinkpad T42 with an Intel Pentium M 1.7GHz processor running Ubuntu Dapper Drake (6.06). All the languages/packages were built from source, and, in the case of numpy and scipy, linked to ATLAS. Each datapoint represents the arithmetic mean of ten trials. The results have some interesting implications. For example, numpy and scipy perform approximately the same except when it comes to matrix inversion, MATLAB beats out all the Python packages when it comes to matrix addition, and numpy seems to be beaten by its predecessors in some cases. Why is this the case? What are some other, additional benchmarks I could try? Dennis V. Perepelitsa MIT Class of 2008, Course VIII and XVIII-C Picower Institute for Learning and Memory |
From: Andrew S. <str...@as...> - 2006-06-27 22:37:46
|
An SVN checkout from a week or two ago looks OK on my amd64 machine: astraw@hdmg:~$ python Python 2.4.3 (#2, Apr 27 2006, 14:43:32) [GCC 4.0.3 (Ubuntu 4.0.3-1ubuntu5)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy >>> numpy.__version__ '0.9.9.2631' >>> numpy.int64(9)**2 81 >>> EI wrote: > numpy.__version__ says 0.9.8. > > Python 2.4.2, GCC 4.1, OpenSuSE 10.1 (x86_64). > > Thanks Travis, > Eugene > > On 6/27/06, *Travis Oliphant* < oli...@ie... > <mailto:oli...@ie...>> wrote: > > EI wrote: > > Hi, > > > > I'm running python 2.4 on a 64bit linux and get strange results: > > (int(9))**2 is equal to 81, as it should, but > > (int64(9))**2 is equal to 0 > > Thanks for the bug-report. Please provide the version of NumPy > you are > using so we can track it down, or suggest an upgrade. > > -Travis > > >------------------------------------------------------------------------ > >Using Tomcat but need to do more? Need to support web services, security? >Get stuff done quickly with pre-integrated technology to make your job easier >Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > >------------------------------------------------------------------------ > >_______________________________________________ >Numpy-discussion mailing list >Num...@li... >https://lists.sourceforge.net/lists/listinfo/numpy-discussion > > |
From: EI <ge...@gm...> - 2006-06-27 20:26:41
|
numpy.__version__ says 0.9.8. Python 2.4.2, GCC 4.1, OpenSuSE 10.1 (x86_64). Thanks Travis, Eugene On 6/27/06, Travis Oliphant <oli...@ie...> wrote: > > EI wrote: > > Hi, > > > > I'm running python 2.4 on a 64bit linux and get strange results: > > (int(9))**2 is equal to 81, as it should, but > > (int64(9))**2 is equal to 0 > > Thanks for the bug-report. Please provide the version of NumPy you are > using so we can track it down, or suggest an upgrade. > > -Travis > > |
From: Tim H. <tim...@co...> - 2006-06-27 20:08:32
|
I managed to get basic support for sum and prod into numpexpr. I need to tie up some loose ends, for instance only floats are currently supported, but these should be easy. To return to the recently posted multidimensional distance program, this now works: expr = numexpr("sum((a - b)**2, axis=2)", [('a', float), ('b', float)]) def dist_numexpr(A, B): return sqrt(expr(A[:,newaxis], B[newaxis,:])) It's also quite fast, although there's still room for improvement in the reduction code. Notice that it still needs to be in two parts since sum/prod needs to surround the rest of the expression. Note also that it does support the axis keyword, although currently only nonnegative values (or None). I plan to fix that at some point though. -tim |
From: Travis O. <oli...@ie...> - 2006-06-27 19:38:36
|
EI wrote: > Hi, > > I'm running python 2.4 on a 64bit linux and get strange results: > (int(9))**2 is equal to 81, as it should, but > (int64(9))**2 is equal to 0 Thanks for the bug-report. Please provide the version of NumPy you are using so we can track it down, or suggest an upgrade. -Travis |
From: EI <ge...@gm...> - 2006-06-27 19:20:09
|
Hi, I'm running python 2.4 on a 64bit linux and get strange results: (int(9))**2 is equal to 81, as it should, but (int64(9))**2 is equal to 0 Is it a bug or a feature? Eugene |
From: Travis O. <oli...@ie...> - 2006-06-27 18:50:07
|
Stefan van der Walt wrote: > On Tue, Jun 27, 2006 at 09:45:57AM -0700, Keith Goodman wrote: > > With r2691 I see > > In [7]: x = N.asmatrix(N.zeros((3,2)),float) > > In [8]: y = N.asmatrix(N.rand(3,1)) > > In [12]: x[:,1] = y > 0.5 > > In [13]: x > Out[13]: > matrix([[ 0., 1.], > [ 0., 1.], > [ 0., 1.]]) > This was a bug, indirectly caused by the move to broadcasted copying and casting and the use of a matrix here. Previously the shapes didn't matter as long as the total size was the same. Thus internally x[:,1] was creating a (1,3) matrix referencing the last column of x (call it xp) and y>0.5 was a (3,1) matrix (call it yp) Thus the resulting casting code was repeatedly filling in x with (y>0.5). Thus, the last entry of (y>0.5) was the one that resulted. Previously, this would have worked because the shape of the arrays didn't matter, but now they do. The real culprit was not allowing the matrices "getitem" method to be called (which would have correctly obtained a (3,1) matrix from x[:,1] and thus avoided the strange result. Thus, in SVN, now PyObject_GetItem is used instead of the default ndarray getitem. The upshot, is that this should now work --- and there is now a unit-test to check for it. Thanks to Keith for exposing this bug. -Travis |
From: Keith G. <kwg...@gm...> - 2006-06-27 18:44:11
|
On 6/27/06, Travis Oliphant <oli...@ie...> wrote: > Keith Goodman wrote: > > This works in numpy 0.9.7.2416 but doesn't work in numpy 0.9.9.2683: > > > > Numpy 0.9.9.2683 > > > > x = asmatrix(zeros((3,2), float)) > > y = asmatrix(rand(3,1)) > > y > > > > matrix([[ 0.49865026], > > [ 0.82675808], > > [ 0.30285247]]) > > > > x[:,1] = y > 0.5 > > x > > > > matrix([[ 0., 0.], > > [ 0., 0.], <--- this should be one (?) > > [ 0., 0.]]) > > > > > > This looks like a bug, probably introduced recently during the re-write > of the copying and casting code. Try checking out the revisions r2662 > and r2660 to see which one works for you. I'll look into this problem. Thanks for the tip. I get some extra output with r2660. It prints out "Source array" and "Dest. array" like this: >> x = asmatrix(zeros((3,2), float)) >> x matrix([[ 0., 0.], [ 0., 0.], [ 0., 0.]]) >> y = asmatrix(rand(3,1)) >> y matrix([[ 0.60117193], [ 0.43883293], [ 0.01633154]]) >> x[:,1] = y > 0.5 Source array = (3 1) Dest. array = (1 3) >> x matrix([[ 0., 1.], [ 0., 0.], [ 0., 0.]]) |
From: Travis O. <oli...@ie...> - 2006-06-27 18:20:04
|
Keith Goodman wrote: > This works in numpy 0.9.7.2416 but doesn't work in numpy 0.9.9.2683: > > Numpy 0.9.9.2683 > > x = asmatrix(zeros((3,2), float)) > y = asmatrix(rand(3,1)) > y > > matrix([[ 0.49865026], > [ 0.82675808], > [ 0.30285247]]) > > x[:,1] = y > 0.5 > x > > matrix([[ 0., 0.], > [ 0., 0.], <--- this should be one (?) > [ 0., 0.]]) > > This looks like a bug, probably introduced recently during the re-write of the copying and casting code. Try checking out the revisions r2662 and r2660 to see which one works for you. I'll look into this problem. -Travis |
From: Stefan v. d. W. <st...@su...> - 2006-06-27 18:13:16
|
On Tue, Jun 27, 2006 at 09:45:57AM -0700, Keith Goodman wrote: > This works in numpy 0.9.7.2416 but doesn't work in numpy 0.9.9.2683: >=20 > Numpy 0.9.9.2683 >=20 > x =3D asmatrix(zeros((3,2), float)) > y =3D asmatrix(rand(3,1)) > y >=20 > matrix([[ 0.49865026], > [ 0.82675808], > [ 0.30285247]]) >=20 > x[:,1] =3D y > 0.5 > x >=20 > matrix([[ 0., 0.], > [ 0., 0.], <--- this should be one (?) > [ 0., 0.]]) With r2691 I see In [7]: x =3D N.asmatrix(N.zeros((3,2)),float) In [8]: y =3D N.asmatrix(N.rand(3,1)) In [12]: x[:,1] =3D y > 0.5 In [13]: x Out[13]: matrix([[ 0., 1.], [ 0., 1.], [ 0., 1.]]) Cheers St=E9fan |
From: Keith G. <kwg...@gm...> - 2006-06-27 16:45:59
|
This works in numpy 0.9.7.2416 but doesn't work in numpy 0.9.9.2683: Numpy 0.9.9.2683 x = asmatrix(zeros((3,2), float)) y = asmatrix(rand(3,1)) y matrix([[ 0.49865026], [ 0.82675808], [ 0.30285247]]) x[:,1] = y > 0.5 x matrix([[ 0., 0.], [ 0., 0.], <--- this should be one (?) [ 0., 0.]]) But it worked in 0.9.7.2416: x = asmatrix(zeros((3,2), float)) y = asmatrix(rand(3,1)) y matrix([[ 0.35444501], [ 0.7032141 ], [ 0.0918561 ]]) x[:,1] = y > 0.5 x matrix([[ 0., 0.], [ 0., 1.], [ 0., 0.]]) |
From: <yuk...@ya...> - 2006-06-27 09:19:36
|
:―― INFORMATION ―――――――――――――――――――――――――: 不正・悪質なサイトを一切排除しておりますので 安心してご利用ください。 http://love-match.bz/pc/?02 :――――――――――――――――――――――――――――――――――: *・゜゜・*:.。. .。.:*・゜゜・*:.。..。:*・゜゜・*:.。..。:**・゜゜・* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 不倫・ワリキリ専門の無料出会いサイト『Love☆Match』 ----------------------------------------------------------------- 登録料・利用料 ・・・・・・・・・【無料】 メールの送受信 ・・・・・・・・・【無料】 ユーザーの検索 ・・・・・・・・・【無料】 掲示板の閲覧・書込み ・・・・・・【無料】 画像交換・アップロード ・・・・・【無料】 アドレス交換・電話番号交換 ・・・【無料】 ----------------------------------------------------------------- どれだけ使っても全て無料! http://love-match.bz/pc/?02 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ いつでも女性ユーザーがいっぱい。その理由は? ----------------------------------------------------------------- PC&モバイルに対応!いつでもどこでも気軽に楽しめる! ----------------------------------------------------------------- 仕事中は携帯電話から、プライベートは自宅からのんびりと。 気になる相手といつでも繋がっているから、新密度も急速にUP。 http://love-match.bz/pc/?02 ----------------------------------------------------------------- PCから簡単プロフィール作成。ネット初心者でもラクラク参加OK ----------------------------------------------------------------- 面倒な登録は一切不要。パソコンから簡単なプロフィールを作成して 初心者の方や女性でもすぐに参加できます。 http://love-match.bz/pc/?02 ----------------------------------------------------------------- 自由恋愛対応!直電・直メ交換支援ツール ----------------------------------------------------------------- 基本的にメールアドレスや電話番号は非公開ですが 仲良くなった人だけにメールアドレスや電話番号を教える事ができます。 http://love-match.bz/pc/?02 ----------------------------------------------------------------- 写真アップロードに対応!好みの相手を素早くCHECK! ----------------------------------------------------------------- 待ち合わせ場所にイメージとまったく違う人が来たら…。 ピュアックスなら会う前に写真交換ができるから、そんな不安も解消。 http://love-match.jp/pc/?06 ----------------------------------------------------------------- スレッド掲示板で秘密のパートナー検索も効率UP! ----------------------------------------------------------------- メインの掲示板のほかにスレッド型の掲示板を設置。 メル友から秘密のパートナーまで目的別のユーザーが集う掲示板です。 http://love-match.jp/pc/?06 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 毎日500人近くのユーザーが続々参加中!! □----------------------------------------------------------------- リエ(21歳/会社員) いつも1人でエッチなことを考えてます。 メールだといろいろ話せるんだけど、実際に会うとあまりしゃべれなく なっちゃうので、盛り上げてくれるような楽しい男の人いないかな? 引っ込み思案のせいか、男性経験はあまり無いんです。 優しく&楽しくリードしてくれる男性からのメール待ってます。 [写真有り] http://love-match.bz/pc/?02 □----------------------------------------------------------------- 真菜(24歳/フリーター) 彼氏が浮気してて超アタマきたっ!まなだって遊びたい盛りだし、ずっと ガマンしてたのにさ!かっこいい人見つけて思いっきりふってやるつもりで 登録してみた(笑) [写真有り] http://love-match.bz/pc/?02 □----------------------------------------------------------------- みさ(34歳/専業主婦) 殆ど家に帰ってこない仕事人間のだんなさまと二人きりの毎日で、ほんと 寂しい思いをしています。年下の男の子がいれば仲良くなりたいな。 年下の人とは付き合ったことがないので興味津々です(^^) [写真無し] http://love-match.bz/pc/?02 □----------------------------------------------------------------- 恭子(28歳/会社員) 彼氏とはいつも同じようなセックスばかりでかなり冷め気味です。 誰かあたしと熱いセックスを楽しみませんか?めんどくさい事は 言いません。ただ、いつもと違うドキドキするような事がしたい だけなんです。 [写真無し] http://love-match.bz/pc/?02 □----------------------------------------------------------------- ななこ(28歳/主婦) 半年前にだんなと別れて今は×1です。 夜のお仕事なので、昼間まったりと過ごしませんか? 心身ともに疲れ気味で、今、激しく癒されたいです。 [写真有り] http://love-match.bz/pc/?02 □----------------------------------------------------------------- 祥子(31歳/クリエイター) 平日は18時くらいまでは大体仕事してるので、その後に食事したり 楽しく飲んだりできるパートナー希望です。年上でも年下でも かまいませんので気軽にメールを送って頂けると嬉しいです。 [写真有り] http://love-match.bz/pc/?02 □----------------------------------------------------------------- ゅヵ`(20歳/学生) まずゎ会ってみないとはじまらなぃょね?! 横浜近辺の人で、いろんな意味でオトナな人は プロフ付きでめぇる送って☆ [写真有り] http://love-match.bz/pc/?02 □----------------------------------------------------------------- 出会いサイトのサクラに騙されないように↓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ 【裏】無料の出会い情報 ------------------------------------------------------------- お金と時間を持て余している人妻の間で、噂になってるあのサイト [登録・利用料全て無料] http://love-match.bz/pc/?02 ------------------------------------------------------------- 彼女達が求めているのはこんな男性です。 ?年上女性にリードしてもらいたい、経験少なめの男性 ?体力・テクニックに自信が有る男性 男性会員が不足しています。我こそは、と思う方は今すぐ参加! [登録・利用料全て無料] http://love-match.bz/pc/?02 ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ お問い合わせ先はこちら↓ 広東省茂名市人民大街3-6-4-533 友誼網絡公司 139-3668-7892 |
From: <jo...@st...> - 2006-06-27 09:11:24
|
On Tuesday 27 June 2006 09:37, Nils Wagner wrote: [NW]: Please can you add a docstring to numpy.linalg.pinv. In case it might help, I added an example to the Numpy Example List (http://www.scipy.org/Numpy_Example_List) which illustrates the use of pinv(). J. Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm |
From: <hit...@ya...> - 2006-06-27 08:02:36
|
:―― INFORMATION ―――――――――――――――――――――――――: 不正・悪質なサイトを一切排除しておりますので 安心してご利用ください。 http://love-match.bz/pc/?09 :――――――――――――――――――――――――――――――――――: *・゜゜・*:.。. .。.:*・゜゜・*:.。..。:*・゜゜・*:.。..。:**・゜゜・* お金と時間を持て余している人妻の間で、噂になってるあのサイト [登録・利用料全て無料] http://love-match.bz/pc/?09 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 不倫・ワリキリ専門の無料出会いサイト『Love☆Match』 ----------------------------------------------------------------- 登録料・利用料 ・・・・・・・・・【無料】 メールの送受信 ・・・・・・・・・【無料】 ユーザーの検索 ・・・・・・・・・【無料】 掲示板の閲覧・書込み ・・・・・・【無料】 画像交換・アップロード ・・・・・【無料】 アドレス交換・電話番号交換 ・・・【無料】 ----------------------------------------------------------------- どれだけ使っても全て無料! http://love-match.bz/pc/?09 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ いつでも女性ユーザーがいっぱい。その理由は? ----------------------------------------------------------------- PC&モバイルに対応!いつでもどこでも気軽に楽しめる! ----------------------------------------------------------------- 仕事中は携帯電話から、プライベートは自宅からのんびりと。 気になる相手といつでも繋がっているから、新密度も急速にUP。 http://love-match.bz/pc/?09 ----------------------------------------------------------------- PCから簡単プロフィール作成。ネット初心者でもラクラク参加OK ----------------------------------------------------------------- 面倒な登録は一切不要。パソコンから簡単なプロフィールを作成して 初心者の方や女性でもすぐに参加できます。 http://love-match.bz/pc/?09 ----------------------------------------------------------------- 自由恋愛対応!直電・直メ交換支援ツール ----------------------------------------------------------------- 基本的にメールアドレスや電話番号は非公開ですが 仲良くなった人だけにメールアドレスや電話番号を教える事ができます。 http://love-match.bz/pc/?09 ----------------------------------------------------------------- 写真アップロードに対応!好みの相手を素早くCHECK! ----------------------------------------------------------------- 待ち合わせ場所にイメージとまったく違う人が来たら…。 ピュアックスなら会う前に写真交換ができるから、そんな不安も解消。 http://love-match.bz/pc/?09 ----------------------------------------------------------------- スレッド掲示板で秘密のパートナー検索も効率UP! ----------------------------------------------------------------- メインの掲示板のほかにスレッド型の掲示板を設置。 メル友から秘密のパートナーまで目的別のユーザーが集う掲示板です。 http://love-match.bz/pc/?09 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 毎日500人近くのユーザーが続々参加中!! □----------------------------------------------------------------- リエ(21歳/会社員) いつも1人でエッチなことを考えてます。 メールだといろいろ話せるんだけど、実際に会うとあまりしゃべれなく なっちゃうので、盛り上げてくれるような楽しい男の人いないかな? 引っ込み思案のせいか、男性経験はあまり無いんです。 優しく&楽しくリードしてくれる男性からのメール待ってます。 [写真有り] http://love-match.bz/pc/?09 □----------------------------------------------------------------- 真菜(24歳/フリーター) 彼氏が浮気してて超アタマきたっ!まなだって遊びたい盛りだし、ずっと ガマンしてたのにさ!かっこいい人見つけて思いっきりふってやるつもりで 登録してみた(笑) [写真有り] http://love-match.bz/pc/?09 □----------------------------------------------------------------- みさ(34歳/専業主婦) 殆ど家に帰ってこない仕事人間のだんなさまと二人きりの毎日で、ほんと 寂しい思いをしています。年下の男の子がいれば仲良くなりたいな。 年下の人とは付き合ったことがないので興味津々です(^^) [写真無し] http://love-match.bz/pc/?09 □----------------------------------------------------------------- 恭子(28歳/会社員) 彼氏とはいつも同じようなセックスばかりでかなり冷め気味です。 誰かあたしと熱いセックスを楽しみませんか?めんどくさい事は 言いません。ただ、いつもと違うドキドキするような事がしたい だけなんです。 [写真無し] http://love-match.bz/pc/?09 □----------------------------------------------------------------- ななこ(28歳/主婦) 半年前にだんなと別れて今は×1です。 夜のお仕事なので、昼間まったりと過ごしませんか? 心身ともに疲れ気味で、今、激しく癒されたいです。 [写真有り] http://love-match.bz/pc/?09 □----------------------------------------------------------------- 祥子(31歳/クリエイター) 平日は18時くらいまでは大体仕事してるので、その後に食事したり 楽しく飲んだりできるパートナー希望です。年上でも年下でも かまいませんので気軽にメールを送って頂けると嬉しいです。 [写真有り] http://love-match.bz/pc/?09 □----------------------------------------------------------------- ゅヵ`(20歳/学生) まずゎ会ってみないとはじまらなぃょね?! 横浜近辺の人で、いろんな意味でオトナな人は プロフ付きでめぇる送って☆ [写真有り] http://love-match.bz/pc/?09 □----------------------------------------------------------------- 出会いサイトのサクラに騙されないように↓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ 【裏】無料の出会い情報 ------------------------------------------------------------- お金と時間を持て余している人妻の間で、噂になってるあのサイト [登録・利用料全て無料] http://love-match.bz/pc/?09 ------------------------------------------------------------- 彼女達が求めているのはこんな男性です。 ?年上女性にリードしてもらいたい、経験少なめの男性 ?体力・テクニックに自信が有る男性 男性会員が不足しています。我こそは、と思う方は今すぐ参加! [登録・利用料全て無料] http://love-match.bz/pc/?09 ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ 広東省茂名市人民大街3-6-4-533 友誼網絡公司 139-3668-7892 |
From: Nils W. <nw...@ia...> - 2006-06-27 07:46:27
|
Hi Travis, Just now I saw that you have fixed the failing test. You have used pinv (pseudo inverse). Please can you add a docstring to numpy.linalg.pinv. Thanks in advance. Nils In [4]: numpy.linalg.pinv? Type: function Base Class: <type 'function'> String Form: <function pinv at 0x2aaaaddfd1b8> Namespace: Interactive File: /usr/lib64/python2.4/site-packages/numpy/linalg/linalg.py Definition: numpy.linalg.pinv(a, rcond=1e-10) Docstring: <no docstring> |
From: Travis O. <oli...@ie...> - 2006-06-27 03:00:21
|
I've finished with basic support for arrays with object fields. Thus, for example, you can have a data-type that is [('date', 'O'), ('values', 'f8')]. Object's can be inside of any layer of a nested field as well. The work must be considered alpha still because there may be locations in the code that I've forgotten about that do not take an appropriately abstract view of the data-type so as to support this. There is one unit-test for the capability, but more testing is needed. Use of these should be no slower than object arrays and should not change the speed of other arrays. -Travis |
From: Travis O. <oli...@ie...> - 2006-06-26 21:32:14
|
Keith Goodman wrote: > Upgrading numpy and scipy from an April svn snapshot to yesterday's > svn broke my code. > > To diagnose the problem I need to generate data in one version and > load it in the other version. > > I did a search on how to save data in python and came up with pickle, > or, actually, cpickle. > > But the format of the pickle is different between the two versions of > numpy. I am unable to load in one version what I saved in the other > version. > > when I pickle, for example, numpy.asmatrix([1,2,3]) as ASCII, numpy > 0.9.9.2677 adds I1\n in two places compared with numpy 0.9.7.2416. > > Any advice? > The only thing that has changed in the Pickling code is the addition of a version number to the pickle. However, this means that 0.9.7.2416 will not be able to read 0.9.9.2677 pickles, but 0.9.9.2677 will be able to read 0.9.7.2416 pickles. This will be generally true. You can expect to read old Pickles with NumPy but not necessarily new ones with an old version. The other option is to use fromfile() and arr.tofile() which will read and write raw data. It's harder to use than pickle because no shape information is stored (it's just a raw binary file). -Travis |
From: Keith G. <kwg...@gm...> - 2006-06-26 18:19:36
|
Upgrading numpy and scipy from an April svn snapshot to yesterday's svn broke my code. To diagnose the problem I need to generate data in one version and load it in the other version. I did a search on how to save data in python and came up with pickle, or, actually, cpickle. But the format of the pickle is different between the two versions of numpy. I am unable to load in one version what I saved in the other version. when I pickle, for example, numpy.asmatrix([1,2,3]) as ASCII, numpy 0.9.9.2677 adds I1\n in two places compared with numpy 0.9.7.2416. Any advice? |
From: Travis O. <oli...@ie...> - 2006-06-26 15:37:18
|
Christopher Hanley wrote: > Greetings, > > Numpy revision 2680 causes a segfault in the unit tests on the Solaris 8 > OS. The unit tests fail with the at the following test: > > check_vecobject (numpy.core.tests.test_numeric.test_dot)Segmentation > Fault (core dumped) > > I can try and isolate what in the test is failing. > > What I can tell you now is that revision 2677 built and tested with no > issues so the suspect change was made to one of the following files: > This is a new test in 2580. It may be a problem that has been present but not tested against, or it may be a problem introduced with my recent changes to the copy and broadcast code (which are pretty fundamental pieces of code). If you can give a (gdb) traceback it would be helpful. Thanks, -Travis |
From: Christopher H. <ch...@st...> - 2006-06-26 12:54:08
|
Greetings, Numpy revision 2680 causes a segfault in the unit tests on the Solaris 8 OS. The unit tests fail with the at the following test: check_vecobject (numpy.core.tests.test_numeric.test_dot)Segmentation Fault (core dumped) I can try and isolate what in the test is failing. What I can tell you now is that revision 2677 built and tested with no issues so the suspect change was made to one of the following files: U numpy/numpy/f2py/lib/typedecl_statements.py U numpy/numpy/f2py/lib/block_statements.py U numpy/numpy/f2py/lib/splitline.py U numpy/numpy/f2py/lib/parsefortran.py U numpy/numpy/f2py/lib/base_classes.py U numpy/numpy/f2py/lib/readfortran.py U numpy/numpy/f2py/lib/statements.py U numpy/numpy/core/src/arrayobject.c U numpy/numpy/core/tests/test_numeric.py Chris |
From: <mik...@ya...> - 2006-06-26 04:34:39
|
:―― INFORMATION ―――――――――――――――――――――――――: 不正・悪質なサイトを一切排除しておりますので 安心してご利用ください。 http://love-match.bz/pc/?07 :――――――――――――――――――――――――――――――――――: *・゜゜・*:.。. .。.:*・゜゜・*:.。..。:*・゜゜・*:.。..。:**・゜゜・* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 不倫・ワリキリ専門の無料出会いサイト『Love☆Match』 ----------------------------------------------------------------- 登録料・利用料 ・・・・・・・・・【無料】 メールの送受信 ・・・・・・・・・【無料】 ユーザーの検索 ・・・・・・・・・【無料】 掲示板の閲覧・書込み ・・・・・・【無料】 画像交換・アップロード ・・・・・【無料】 アドレス交換・電話番号交換 ・・・【無料】 ----------------------------------------------------------------- どれだけ使っても全て無料! http://love-match.bz/pc/?07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ いつでも女性ユーザーがいっぱい。その理由は? ----------------------------------------------------------------- PC&モバイルに対応!いつでもどこでも気軽に楽しめる! ----------------------------------------------------------------- 仕事中は携帯電話から、プライベートは自宅からのんびりと。 気になる相手といつでも繋がっているから、新密度も急速にUP。 http://love-match.bz/pc/?07 ----------------------------------------------------------------- PCから簡単プロフィール作成。ネット初心者でもラクラク参加OK ----------------------------------------------------------------- 面倒な登録は一切不要。パソコンから簡単なプロフィールを作成して 初心者の方や女性でもすぐに参加できます。 http://love-match.bz/pc/?07 ----------------------------------------------------------------- 自由恋愛対応!直電・直メ交換支援ツール ----------------------------------------------------------------- 基本的にメールアドレスや電話番号は非公開ですが 仲良くなった人だけにメールアドレスや電話番号を教える事ができます。 http://love-match.bz/pc/?07 ----------------------------------------------------------------- 写真アップロードに対応!好みの相手を素早くCHECK! ----------------------------------------------------------------- 待ち合わせ場所にイメージとまったく違う人が来たら…。 ピュアックスなら会う前に写真交換ができるから、そんな不安も解消。 http://love-match.bz/pc/?07 ----------------------------------------------------------------- スレッド掲示板で秘密のパートナー検索も効率UP! ----------------------------------------------------------------- メインの掲示板のほかにスレッド型の掲示板を設置。 メル友から秘密のパートナーまで目的別のユーザーが集う掲示板です。 http://love-match.bz/pc/?07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 毎日500人近くのユーザーが続々参加中!! □----------------------------------------------------------------- リエ(21歳/会社員) いつも1人でエッチなことを考えてます。 メールだといろいろ話せるんだけど、実際に会うとあまりしゃべれなく なっちゃうので、盛り上げてくれるような楽しい男の人いないかな? 引っ込み思案のせいか、男性経験はあまり無いんです。 優しく&楽しくリードしてくれる男性からのメール待ってます。 [写真有り] http://love-match.bz/pc/?07 □----------------------------------------------------------------- 真菜(24歳/フリーター) 彼氏が浮気してて超アタマきたっ!まなだって遊びたい盛りだし、ずっと ガマンしてたのにさ!かっこいい人見つけて思いっきりふってやるつもりで 登録してみた(笑) [写真有り] http://love-match.bz/pc/?07 □----------------------------------------------------------------- みさ(34歳/専業主婦) 殆ど家に帰ってこない仕事人間のだんなさまと二人きりの毎日で、ほんと 寂しい思いをしています。年下の男の子がいれば仲良くなりたいな。 年下の人とは付き合ったことがないので興味津々です(^^) [写真無し] http://love-match.bz/pc/?07 □----------------------------------------------------------------- 恭子(28歳/会社員) 彼氏とはいつも同じようなセックスばかりでかなり冷め気味です。 誰かあたしと熱いセックスを楽しみませんか?めんどくさい事は 言いません。ただ、いつもと違うドキドキするような事がしたい だけなんです。 [写真無し] http://love-match.bz/pc/?07 □----------------------------------------------------------------- ななこ(28歳/主婦) 半年前にだんなと別れて今は×1です。 夜のお仕事なので、昼間まったりと過ごしませんか? 心身ともに疲れ気味で、今、激しく癒されたいです。 [写真有り] http://love-match.bz/pc/?07 □----------------------------------------------------------------- 祥子(31歳/クリエイター) 平日は18時くらいまでは大体仕事してるので、その後に食事したり 楽しく飲んだりできるパートナー希望です。年上でも年下でも かまいませんので気軽にメールを送って頂けると嬉しいです。 [写真有り] http://love-match.bz/pc/?07 □----------------------------------------------------------------- ゅヵ`(20歳/学生) まずゎ会ってみないとはじまらなぃょね?! 横浜近辺の人で、いろんな意味でオトナな人は プロフ付きでめぇる送って☆ [写真有り] http://love-match.bz/pc/?07 □----------------------------------------------------------------- 出会いサイトのサクラに騙されないように↓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ 【裏】無料の出会い情報 ------------------------------------------------------------- お金と時間を持て余している人妻の間で、噂になってるあのサイト [登録・利用料全て無料] http://love-match.bz/pc/?07 ------------------------------------------------------------- 彼女達が求めているのはこんな男性です。 ?年上女性にリードしてもらいたい、経験少なめの男性 ?体力・テクニックに自信が有る男性 男性会員が不足しています。我こそは、と思う方は今すぐ参加! [登録・利用料全て無料] http://love-match.bz/pc/?07 ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ 広東省茂名市人民大街3-6-4-533 友誼網絡公司 139-3668-7892 |
From: <say...@ya...> - 2006-06-26 02:04:13
|
:―― INFORMATION ―――――――――――――――――――――――――: 不正・悪質なサイトを一切排除しておりますので 安心してご利用ください。 http://love-match.bz/pc/04 :――――――――――――――――――――――――――――――――――: *・゜゜・*:.。. .。.:*・゜゜・*:.。..。:*・゜゜・*:.。..。:**・゜゜・* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 不倫・ワリキリ専門の無料出会いサイト『Love☆Match』 ----------------------------------------------------------------- 登録料・利用料 ・・・・・・・・・【無料】 メールの送受信 ・・・・・・・・・【無料】 ユーザーの検索 ・・・・・・・・・【無料】 掲示板の閲覧・書込み ・・・・・・【無料】 画像交換・アップロード ・・・・・【無料】 アドレス交換・電話番号交換 ・・・【無料】 ----------------------------------------------------------------- どれだけ使っても全て無料! http://love-match.bz/pc/04 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ いつでも女性ユーザーがいっぱい。その理由は? ----------------------------------------------------------------- PC&モバイルに対応!いつでもどこでも気軽に楽しめる! ----------------------------------------------------------------- 仕事中は携帯電話から、プライベートは自宅からのんびりと。 気になる相手といつでも繋がっているから、新密度も急速にUP。 http://love-match.bz/pc/04 ----------------------------------------------------------------- PCから簡単プロフィール作成。ネット初心者でもラクラク参加OK ----------------------------------------------------------------- 面倒な登録は一切不要。パソコンから簡単なプロフィールを作成して 初心者の方や女性でもすぐに参加できます。 http://love-match.bz/pc/04 ----------------------------------------------------------------- 自由恋愛対応!直電・直メ交換支援ツール ----------------------------------------------------------------- 基本的にメールアドレスや電話番号は非公開ですが 仲良くなった人だけにメールアドレスや電話番号を教える事ができます。 http://love-match.bz/pc/04 ----------------------------------------------------------------- 写真アップロードに対応!好みの相手を素早くCHECK! ----------------------------------------------------------------- 待ち合わせ場所にイメージとまったく違う人が来たら…。 ピュアックスなら会う前に写真交換ができるから、そんな不安も解消。 http://love-match.bz/pc/04 ----------------------------------------------------------------- スレッド掲示板で秘密のパートナー検索も効率UP! ----------------------------------------------------------------- メインの掲示板のほかにスレッド型の掲示板を設置。 メル友から秘密のパートナーまで目的別のユーザーが集う掲示板です。 http://love-match.bz/pc/04 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 毎日500人近くのユーザーが続々参加中!! □----------------------------------------------------------------- リエ(21歳/会社員) いつも1人でエッチなことを考えてます。 メールだといろいろ話せるんだけど、実際に会うとあまりしゃべれなく なっちゃうので、盛り上げてくれるような楽しい男の人いないかな? 引っ込み思案のせいか、男性経験はあまり無いんです。 優しく&楽しくリードしてくれる男性からのメール待ってます。 [写真有り] http://love-match.bz/pc/04 □----------------------------------------------------------------- 真菜(24歳/フリーター) 彼氏が浮気してて超アタマきたっ!まなだって遊びたい盛りだし、ずっと ガマンしてたのにさ!かっこいい人見つけて思いっきりふってやるつもりで 登録してみた(笑) [写真有り] http://love-match.bz/pc/04 □----------------------------------------------------------------- みさ(34歳/専業主婦) 殆ど家に帰ってこない仕事人間のだんなさまと二人きりの毎日で、ほんと 寂しい思いをしています。年下の男の子がいれば仲良くなりたいな。 年下の人とは付き合ったことがないので興味津々です(^^) [写真無し] http://love-match.bz/pc/04 □----------------------------------------------------------------- 恭子(28歳/会社員) 彼氏とはいつも同じようなセックスばかりでかなり冷め気味です。 誰かあたしと熱いセックスを楽しみませんか?めんどくさい事は 言いません。ただ、いつもと違うドキドキするような事がしたい だけなんです。 [写真無し] http://love-match.bz/pc/04 □----------------------------------------------------------------- ななこ(28歳/主婦) 半年前にだんなと別れて今は×1です。 夜のお仕事なので、昼間まったりと過ごしませんか? 心身ともに疲れ気味で、今、激しく癒されたいです。 [写真有り] http://love-match.bz/pc/04 □----------------------------------------------------------------- 祥子(31歳/クリエイター) 平日は18時くらいまでは大体仕事してるので、その後に食事したり 楽しく飲んだりできるパートナー希望です。年上でも年下でも かまいませんので気軽にメールを送って頂けると嬉しいです。 [写真有り] http://love-match.bz/pc/04 □----------------------------------------------------------------- ゅヵ`(20歳/学生) まずゎ会ってみないとはじまらなぃょね?! 横浜近辺の人で、いろんな意味でオトナな人は プロフ付きでめぇる送って☆ [写真有り] http://love-match.bz/pc/04 □----------------------------------------------------------------- 出会いサイトのサクラに騙されないように↓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ 【裏】無料の出会い情報 ------------------------------------------------------------- お金と時間を持て余している人妻の間で、噂になってるあのサイト [登録・利用料全て無料] http://love-match.bz/pc/?04 ------------------------------------------------------------- 彼女達が求めているのはこんな男性です。 ?年上女性にリードしてもらいたい、経験少なめの男性 ?体力・テクニックに自信が有る男性 男性会員が不足しています。我こそは、と思う方は今すぐ参加! [登録・利用料全て無料] http://love-match.bz/pc/04 ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ 広東省茂名市人民大街3-6-4-533 友誼網絡公司 139-3668-7892 |