MCPcopy Create free account
hub / github.com/TencentARC/BrushNet / shave_segments

Function shave_segments

scripts/convert_zero123_to_diffusers.py:197–204  ·  view source on GitHub ↗

Removes segments. Positive values shave the first segments, negative shave the last segments.

(path, n_shave_prefix_segments=1)

Source from the content-addressed store, hash-verified

195
196
197def shave_segments(path, n_shave_prefix_segments=1):
198 """
199 Removes segments. Positive values shave the first segments, negative shave the last segments.
200 """
201 if n_shave_prefix_segments >= 0:
202 return ".".join(path.split(".")[n_shave_prefix_segments:])
203 else:
204 return ".".join(path.split(".")[:n_shave_prefix_segments])
205
206
207def renew_resnet_paths(old_list, n_shave_prefix_segments=0):

Callers 4

renew_resnet_pathsFunction · 0.70
renew_vae_resnet_pathsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected