diff options
author | bloodstalker <thabogre@gmail.com> | 2018-11-17 11:13:53 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-11-17 11:13:53 +0000 |
commit | 544f9d5289601a8ff2db4b92086d9cb7089128f5 (patch) | |
tree | e399696b66c2237e2295a469fd2c7f28cbef9bb0 /dlstuff/four.py | |
parent | update (diff) | |
download | seer-544f9d5289601a8ff2db4b92086d9cb7089128f5.tar.gz seer-544f9d5289601a8ff2db4b92086d9cb7089128f5.zip |
update
Diffstat (limited to 'dlstuff/four.py')
-rwxr-xr-x | dlstuff/four.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dlstuff/four.py b/dlstuff/four.py index 983386a..90f58b9 100755 --- a/dlstuff/four.py +++ b/dlstuff/four.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!python # _*_ coding=utf-8 _*_ import argparse @@ -48,6 +48,7 @@ def premain(argparser): signal.signal(signal.SIGINT, SigHandler_SIGINT) #here (train_data, train_targets), (test_data, test_targets) = boston_housing.load_data() + print(type(train_data)) mean = train_data.mean(axis=0) train_data -= mean std = train_data.std(axis=0) |