abd-clam 0.11.1

Clustered Learning of Approximate Manifolds
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os
import pathlib

DATA_ROOT = pathlib.Path(
    os.environ.get(
        "DATA_ROOT",
        pathlib.Path(__file__).parent.parent.parent.parent.joinpath("data"),
    ),
).resolve()
assert DATA_ROOT.exists(), f"DATA_ROOT not found: {DATA_ROOT}"

REPORTS_DIR = DATA_ROOT.joinpath(
    "search_small",
    "reports",
)
assert REPORTS_DIR.exists(), f"Path not found: {REPORTS_DIR}"