MCPcopy Create free account
hub / github.com/YesianRohn/TextSSR / shave_segments

Function shave_segments

diffusers/scripts/convert_if.py:539–546  ·  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

537
538
539def shave_segments(path, n_shave_prefix_segments=1):
540 """
541 Removes segments. Positive values shave the first segments, negative shave the last segments.
542 """
543 if n_shave_prefix_segments >= 0:
544 return ".".join(path.split(".")[n_shave_prefix_segments:])
545 else:
546 return ".".join(path.split(".")[:n_shave_prefix_segments])
547
548
549def renew_resnet_paths(old_list, n_shave_prefix_segments=0):

Callers 4

renew_resnet_pathsFunction · 0.70
renew_attention_pathsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected