forked from Leejucheon96/Order-ViT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
train_test.py
29 lines (21 loc) · 887 Bytes
/
train_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
import dotenv
import hydra
from omegaconf import DictConfig
import warnings, os
# 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_classificaiton.yaml")
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
from src.testing_pipeline_classification import test_classification
os.environ["WANDB_API_KEY"] = 'wandb-key-number' # e476bb91d83495c4174473429b20f197416f08c9
# Applies optional utilities
utils.extras(config)
warnings.filterwarnings(action='ignore')
# Evaluate model
return test_classification(config)
if __name__ == "__main__":
main()