test.py 201 Bytes
Newer Older
1
# coding: utf-8
2
from pathlib import Path
3

4
5
import numpy as np

6
preds = [np.loadtxt(str(name)) for name in Path(__file__).absolute().parent.glob("*.pred")]
7
np.testing.assert_allclose(preds[0], preds[1])