File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
python/ql/test/experimental/dataflow/regression Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 1+ | pointsto_regressions.py:15:18:15:21 | ControlFlowNode for self | pointsto_regressions.py:19:9:19:12 | ControlFlowNode for self |
Original file line number Diff line number Diff line change 1+ # This file contains snippets from snapshots that displayed interesting results for `pointsto.ql`.
2+
3+ class Chatbot :
4+ """
5+ Main class which launch the training or testing mode
6+ """
7+
8+ class TestMode :
9+ """ Simple structure representing the different testing modes
10+ """
11+ ALL = 'all'
12+ INTERACTIVE = 'interactive' # The user can write his own questions
13+ DAEMON = 'daemon' # The chatbot runs on background and can regularly be called to predict something
14+
15+ def __init__ (self ):
16+ """
17+ """
18+ # Model/dataset parameters
19+ self .args = None
You can’t perform that action at this time.
0 commit comments