FNN 1.0.0
Toolbox to use NNs in Fortran.
|
Classes | |
class | keras_to_fnn.UnsupportedModelException |
Exception class for unsupported models. More... | |
class | keras_to_fnn.UnsupportedLayerException |
Exception class for unsupported layers. More... | |
Namespaces | |
namespace | keras_to_fnn |
Interface module between keras and FNN. | |
Functions | |
def | keras_to_fnn.keras_to_txt (filename_out, model, **kwargs) |
Transforms a keras model into a txt model file which can be read by FNN. More... | |
def | keras_to_fnn.keras_file_to_txt (filename_out, filename_in, **kwargs) |
Transforms a keras model file into a txt model file which can be read by FNN. More... | |
Variables | |
string | keras_to_fnn.STR_FORMAT = '{}'.format |
Format function for strings. More... | |
string | keras_to_fnn.INT_FORMAT = '{:>7d}'.format |
Format function for integers. More... | |
string | keras_to_fnn.FLOAT_FORMAT = '{:0.7e}'.format |
Format function for real numbers. More... | |