(self, x)
| 113 | |
| 114 | class Bad1(torch.nn.Module): |
| 115 | def forward(self, x): |
| 116 | if x.sum() > 0: |
| 117 | return torch.sin(x) |
| 118 | return torch.cos(x) |
| 119 | |
| 120 | import traceback as tb |
| 121 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected