-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvalidate.py
40 lines (29 loc) · 923 Bytes
/
validate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
import h5py
import numpy as np
from submission.run import Evaluator
DATA_PATH = "data/validation/data.hdf5"
def main():
# Load the data (combined features & targets)
try:
data = h5py.File(DATA_PATH, "r")
except FileNotFoundError:
print(f"Unable to load features at `{DATA_PATH}`")
return
# Switch into the submission directory
cwd = os.getcwd()
os.chdir("submission")
# Make predictions on the data
try:
evaluator = Evaluator()
predictions = []
for batch in evaluator.predict(features=data):
assert batch.shape[-1] == 48
predictions.append(batch)
finally:
os.chdir(cwd)
# Output the mean absolute error
mae = np.mean(np.absolute(data["targets"] - np.concatenate(predictions)))
print("MAE:", mae)
if __name__ == "__main__":
main()