john wrote:
> I have a simple module which performs basic operations on plot3d files
> (below). I wrapped like:
>
> f2py --fcompiler=gfortran -m plot3d -c prec.f90 plot3d.f90
>
> That seems to work fine, but i get some unexpected results...
>
from plot3d import plot3d as p3
dir(p3)
>
Bruno Desthuilliers wrote:
> >>> class Prop(object):
> ... @apply
> ... def prop():
> ... def fget(self): return self._prop
> ... def fset(self, val): self._prop = val
> ... return property(**locals())
> ... def __init__(self, val): self.prop=val
> ...
> >>> c
Bruno Desthuilliers wrote:
> mwojc a écrit :
>> Hi!
>> My class with implemented __getattr__ and __setattr__ methods cannot be
>> pickled because of the Error:
>>
>> ==
>> ERROR: test
Hi!
My class with implemented __getattr__ and __setattr__ methods cannot be
pickled because of the Error:
==
ERROR: testPickle (__main__.TestDeffnet2WithBiases)
-
Beliavsky napisal(a):
> mwojc wrote:
> > Hi!
> > I released feed-forward neural network for python (ffnet) project at
> > sourceforge. Implementation is extremelly fast (code written mostly in
> > fortran with thin python interface, scipy optimizers involved) and ve
Hi!
I released feed-forward neural network for python (ffnet) project at
sourceforge. Implementation is extremelly fast (code written mostly in
fortran with thin python interface, scipy optimizers involved) and very
easy to use.
I'm announcing it here because you, folks, are potential users/testers