-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.py
34 lines (26 loc) · 935 Bytes
/
run.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
"""
Copyright 2019 Lummetry.AI (Knowledge Investment Group SRL). All Rights Reserved.
* NOTICE: All information contained herein is, and remains
* the property of Knowledge Investment Group SRL.
* The intellectual and technical concepts contained
* herein are proprietary to Knowledge Investment Group SRL
* and may be covered by Romanian and Foreign Patents,
* patents in process, and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Knowledge Investment Group SRL.
@copyright: Lummetry.AI
@author: Lummetry.AI
@project:
@description:
"""
from app import VaporBoxCheck
from libraries_pub import Logger
if __name__ == '__main__':
log = Logger(
lib_name='VBC',
config_file='config.txt',
TF_KERAS=False
)
vbc = VaporBoxCheck(log=log, DEBUG=True)
vbc.run()