MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / mkdir

Function mkdir

cnn_class2/make_limited_datasets.py:5–7  ·  view source on GitHub ↗
(p)

Source from the content-addressed store, hash-verified

3import os
4
5def mkdir(p):
6 if not os.path.exists(p):
7 os.mkdir(p)
8
9def link(src, dst):
10 if not os.path.exists(dst):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected