doc string update multifeedforward

This commit is contained in:
Dario Coscia
2023-09-06 12:49:08 +02:00
committed by Nicola Demo
parent b029f18c49
commit 3a7fc63760

View File

@@ -6,6 +6,8 @@ from .feed_forward import FeedForward
class MultiFeedForward(torch.nn.Module): class MultiFeedForward(torch.nn.Module):
""" """
The PINA implementation of MultiFeedForward network.
This model allows to create a network with multiple FeedForward combined This model allows to create a network with multiple FeedForward combined
together. The user has to define the `forward` method choosing how to together. The user has to define the `forward` method choosing how to
combine the different FeedForward networks. combine the different FeedForward networks.