-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtest.py
34 lines (25 loc) · 882 Bytes
/
test.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
import dotenv
import hydra
from omegaconf import DictConfig
# load environment variables from `.env` file if it exists
# recursively searches for `.env` in all folders starting from work dir
dotenv.load_dotenv(override=True)
@hydra.main(config_path="configs/", config_name="test.yaml", version_base="1.1")
def main(config: DictConfig):
# Imports can be nested inside @hydra.main to optimize tab completion
# https://github.com/facebookresearch/hydra/issues/934
from src import utils
if (
config.test_mode == "bnn"
or config.test_mode == "deepens"
or config.test_mode == "dibs"
):
from src.testing_bayes_pipeline import test
else:
from src.testing_pipeline import test
# Applies optional utilities
utils.extras(config)
# Evaluate model
return test(config)
if __name__ == "__main__":
main()