MCPcopy
hub / github.com/nadermx/backgroundremover / _upsample_like

Function _upsample_like

backgroundremover/u2net/u2net.py:26–30  ·  view source on GitHub ↗
(src, tar)

Source from the content-addressed store, hash-verified

24
25## upsample tensor 'src' to have the same spatial size with tensor 'tar'
26def _upsample_like(src, tar):
27
28 src = F.interpolate(src, size=tar.shape[2:], mode="bilinear", align_corners=False)
29
30 return src
31
32
33### RSU-7 ###

Callers 6

forwardMethod · 0.85
forwardMethod · 0.85
forwardMethod · 0.85
forwardMethod · 0.85
forwardMethod · 0.85
forwardMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected