MCPcopy
hub / github.com/open-mmlab/mmdetection / view

Method view

mmdet/structures/bbox/base_boxes.py:256–258  ·  view source on GitHub ↗

Reload ``view`` from self.tensor.

(self: T, *shape: Tuple[int])

Source from the content-addressed store, hash-verified

254 return type(self)(self.tensor.detach(), clone=False)
255
256 def view(self: T, *shape: Tuple[int]) -> T:
257 """Reload ``view`` from self.tensor."""
258 return type(self)(self.tensor.view(shape), clone=False)
259
260 def reshape(self: T, *shape: Tuple[int]) -> T:
261 """Reload ``reshape`` from self.tensor."""

Callers 15

bbox_mapping_backFunction · 0.80
panoptic_postprocessMethod · 0.80
forwardMethod · 0.80
forwardMethod · 0.80
forwardMethod · 0.80
forwardMethod · 0.80
window_reverseMethod · 0.80
window_partitionMethod · 0.80
init_weightsMethod · 0.80
forwardMethod · 0.80
__init__Method · 0.80
points2bboxMethod · 0.80

Calls

no outgoing calls