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

Function shave_segments

scripts/convert_svd_to_diffusers.py:213–220  ·  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

211
212
213def shave_segments(path, n_shave_prefix_segments=1):
214 """
215 Removes segments. Positive values shave the first segments, negative shave the last segments.
216 """
217 if n_shave_prefix_segments >= 0:
218 return ".".join(path.split(".")[n_shave_prefix_segments:])
219 else:
220 return ".".join(path.split(".")[:n_shave_prefix_segments])
221
222
223def 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