-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
49 lines (30 loc) · 894 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Image Classification Deep Learning Tool.
This script runs testing sessions to classify image.
Revision History:
2020-07-12 (Animesh): Baseline Software.
Example:
$ python test.py
"""
#___Import Modules:
from _train_test import NNTools
#___Global Variables:
TEST_DATA = 'data/test.csv'
SETTINGS = 'settings.json'
#___Main Method:
def main():
"""This is the Main Method.
This method contains testing session for image classification.
"""
# creates NNTools object dedicated for running training and tesing
# completes testing session
Test = NNTools(settings=SETTINGS)
Test.test(TEST_DATA, display=True)
return None
#___Driver Program:
if __name__ == "__main__":
main()
#
# end of file
"""ANI717"""