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 very
> easy to use.
> I'm announcing it here because you, folks, are potential users/testers.
>
> If anyone is interested please visit http://ffnet.sourceforge.net (and
> then post comments if any...)

Thanks for making available your code. The Fortran code compiles with
both g95 and gfortran. I looked at the code briefly, and it is
well-documented and clear, but I do wonder why you are writing new code
in Fortran 77. Using free source form instead of fixed source form
would make the code more readable, and using the array operations of
Fortran 90 would make it more concise. Gfortran is a Fortran 95
compiler and is part of gcc, so using Fortran 95 features should not
inhibit portability.

I think using the single letter "o" as a variable name is a bad idea --
it looks too much like "0".

I would like to see a Fortran driver (main program) for the code, so I
could see an example of its use independent from Python and f2py.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to