MCPcopy Create free account
hub / github.com/BioinfoMachineLearning/FlowDock / squeeze

Method squeeze

flowdock/utils/frame_utils.py:23–25  ·  view source on GitHub ↗

Squeeze Rigid Transform.

(self, dim)

Source from the content-addressed store, hash-verified

21 return RigidTransform(self.t.unsqueeze(dim), self.R.unsqueeze(dim))
22
23 def squeeze(self, dim):
24 """Squeeze Rigid Transform."""
25 return RigidTransform(self.t.squeeze(dim), self.R.squeeze(dim))
26
27 def concatenate(self, other, dim=0):
28 """Concatenate Rigid Transform."""

Callers 6

cartesian_to_internalFunction · 0.80
compute_num_ca_neighborsFunction · 0.80
run_affinity_headMethod · 0.80
forwardMethod · 0.80
forwardMethod · 0.80

Calls 1

RigidTransformClass · 0.85

Tested by

no test coverage detected