neural-fortran icon indicating copy to clipboard operation
neural-fortran copied to clipboard

A parallel framework for deep learning

Results 51 neural-fortran issues
Sort by recently updated
recently updated
newest added

Hi. I've recently tried to link neural-fortran to a fortran physics code. I was wondering if it would be possible to add a bit more documentation on how to use...

Hi, Is ifx (intel nex generation fortran compiler that is replacing ifort) supported, I'm getting the following failures with ifx 2023.1.0: ``` The following tests FAILED: 6 - test_maxpool2d_layer (Failed)...

bug

Hi, We tried to build with HDF5 1.14.x and it either fails at compile time or crashes at runtime (depending on platforms). Was it tested with that 1.14.0 version ?...

A work in progress. I'm mostly interested in loading a TF model from HDF and applying predict(), but I'll do my best in doing a complete implementation coherent with the...

enhancement

I cloned the repository to my laptop and built with the flag -DSERIAL=1; however, several examples (including simple) failed with a segmentation fault, apparently always when calling the subroutine print_info...

Hi, I would like to link against neural-form from my code built with CMake. Is there a FindNeuralFortran.cmake or something similar somewhere ? Thanks

Is there already a solution to scale the input? I'm currently scaling my features manually before feeding into nf. It would be nice if we could incorporate such scaling in...

Addresses #155 @milancurcic , I've included the structure of the batch normalization layer. Could you please review it and confirm whether I'm in the correct direction?

In support of #155. This will impact the `forward` and `backward` methods in: * `network` type * `layer` type * `dense_layer` type * `conv2d_layer` type Effectively, rather than looping over...

enhancement

Originally requested by @rweed in #114. A batch normalization is possibly the next most widely used layer after dense, convolutional, and maxpooling layers, and is an important tool in optimization...

enhancement