aboutsummaryrefslogtreecommitdiffstats
path: root/marionette.py
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-09-02 12:12:56 +0000
committerbloodstalker <thabogre@gmail.com>2018-09-02 12:12:56 +0000
commit94cc1d159e62c5dce5d43faede3e85f63f451cdd (patch)
tree2cde013d4233b9251c8ad12cc35e8dd92b67f2bf /marionette.py
parentupdate (diff)
downloadseer-94cc1d159e62c5dce5d43faede3e85f63f451cdd.tar.gz
seer-94cc1d159e62c5dce5d43faede3e85f63f451cdd.zip
update
Diffstat (limited to 'marionette.py')
-rwxr-xr-xmarionette.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/marionette.py b/marionette.py
index baa6f04..86c2175 100755
--- a/marionette.py
+++ b/marionette.py
@@ -32,7 +32,7 @@ class Argparser(object):
parser.add_argument("--dbg", action="store_true", help="debug", default=False)
self.args = parser.parse_args()
-def cnn_type_1():
+def marrionette_type_1():
url = "https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data"
names = ["sepal-length", "sepal-width", "petal-length", "petal-width", "class"]
dataset = pandas.read_csv(url, names=names)
@@ -86,7 +86,7 @@ def cnn_type_1():
def premain(argparser):
signal.signal(signal.SIGINT, SigHandler_SIGINT)
#here
- cnn_type_1()
+ marrionette_type_1()
def main():
argparser = Argparser()