MCPcopy Create free account
hub / github.com/3DAnimals/3DAnimals / xmkdir

Function xmkdir

model/utils/misc.py:60–62  ·  view source on GitHub ↗

Create directory PATH recursively if it does not exist.

(path)

Source from the content-addressed store, hash-verified

58
59
60def xmkdir(path):
61 """Create directory PATH recursively if it does not exist."""
62 os.makedirs(path, exist_ok=True)
63
64
65def clean_checkpoint(checkpoint_dir, keep_num=2):

Callers 6

dump_yamlFunction · 0.85
archive_codeFunction · 0.85
save_videosFunction · 0.85
save_imagesFunction · 0.85
save_txtFunction · 0.85
save_objFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected