-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnever2.py
More file actions
40 lines (31 loc) · 899 Bytes
/
never2.py
File metadata and controls
40 lines (31 loc) · 899 Bytes
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
"""
NeVer2 is a tool for the verification of neural networks.
The project is hosted at NeverTools (https://github.com/nevertools/) and comprises
the Python API pyNeVer and the complete GUI tool NeVer2 - this file. The API
enables NeVer2 to provide a graphical interface towards the capabilities of designing,
learning and verifying neural networks, all in a single environment.
Authors
-------
Stefano Demarchi
Dario Guidotti
Armando Tacchella
Luca Pulina
Contributors
------------
Andrea Gimelli
Giacomo Rosato
Karim Pedemonte
Pedro Henrique Simão Achete
Elena Botoeva
"""
import sys
from PyQt6.QtWidgets import QApplication
from never2.main_window import MainWindow
if __name__ == '__main__':
# GUI mode
APP_ID = u'org.neuralverification.never2.2.0'
app = QApplication(sys.argv)
app.setStyle('fusion')
window = MainWindow()
window.show()
sys.exit(app.exec())