aboutsummaryrefslogtreecommitdiffstats
path: root/seer.py
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-09-02 11:20:15 +0000
committerbloodstalker <thabogre@gmail.com>2018-09-02 11:20:15 +0000
commitac8f3eb87638adb6feea1beb4377a82a50a3b141 (patch)
tree8737869b531d9964a3c18217cc04bbf8b5aa05b2 /seer.py
parentupdate (diff)
downloadseer-ac8f3eb87638adb6feea1beb4377a82a50a3b141.tar.gz
seer-ac8f3eb87638adb6feea1beb4377a82a50a3b141.zip
update
Diffstat (limited to 'seer.py')
-rwxr-xr-xseer.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/seer.py b/seer.py
new file mode 100755
index 0000000..c63c6cf
--- /dev/null
+++ b/seer.py
@@ -0,0 +1,45 @@
+#!/usr/bin/python3
+# _*_ coding=utf-8 _*_
+
+import argparse
+import code
+import readline
+import signal
+import sys
+from ltsm import lstm_type_1, lstm_type_2, lstm_type_3
+from cnn import cnn_type_1
+
+def SigHandler_SIGINT(signum, frame):
+ print()
+ sys.exit(0)
+
+class Argparser(object):
+ def __init__(self):
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--string", type=str, help="string")
+ parser.add_argument("--bool", action="store_true", help="bool", default=False)
+ parser.add_argument("--dbg", action="store_true", help="debug", default=False)
+ self.args = parser.parse_args()
+
+# write code here
+def premain(argparser):
+ signal.signal(signal.SIGINT, SigHandler_SIGINT)
+ #here
+
+def main():
+ argparser = Argparser()
+ if argparser.args.dbg:
+ try:
+ premain(argparser)
+ except Exception as e:
+ print(e.__doc__)
+ if e.message: print(e.message)
+ variables = globals().copy()
+ variables.update(locals())
+ shell = code.InteractiveConsole(variables)
+ shell.interact(banner="DEBUG REPL")
+ else:
+ premain(argparser)
+
+if __name__ == "__main__":
+ main()