(self)
| 19 | |
| 20 | class BaseNet(paddle.nn.Layer): |
| 21 | def __init__(self): |
| 22 | super(BaseNet, self).__init__() |
| 23 | |
| 24 | def forward(self, input): |
| 25 | arr = paddle.tensor.create_array(dtype="float32") |
nothing calls this directly
no outgoing calls
no test coverage detected