MLPNetwork¶
- class MLPNetwork(use_bias=True)[source]¶
Establish the network structure for a MLP.
Adapted from the implementation used in [1]
- Parameters:
- use_biasbool, default = True
Condition on whether or not to use bias values for dense layers.
Notes
Adapted from the implementation from source code https://github.com/hfawaz/dl-4-tsc/blob/master/classifiers/mlp.py
References
[1]Wang et al. Time series classification from scratch with deep neural
networks: A strong baseline, IJCNN, 2017.
Methods
build_network
(input_shape, **kwargs)Construct a network and return its input and output layers.