(sym)
| 76 | return uncertainty |
| 77 | |
| 78 | def strip_symmetric(sym): |
| 79 | return strip_lowerdiag(sym) |
| 80 | |
| 81 | def build_rotation(r): |
| 82 | norm = torch.sqrt(r[...,0]*r[...,0] + r[...,1]*r[...,1] + r[...,2]*r[...,2] + r[...,3]*r[...,3]) |
nothing calls this directly
no test coverage detected