diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-02 14:02:20 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-02 14:02:20 +0000 |
commit | 2e8d066729e7714af504908a0279a69918428c0f (patch) | |
tree | 37ed355889f8156839574be38f72aa4ecab7289c | |
parent | update (diff) | |
download | seer-2e8d066729e7714af504908a0279a69918428c0f.tar.gz seer-2e8d066729e7714af504908a0279a69918428c0f.zip |
update
-rwxr-xr-x | seer.py | 1 | ||||
-rwxr-xr-x | tfann.py | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -28,6 +28,7 @@ def launch_ais(which): elif which == "lstm_type_2": lstm_type_2() elif which == "lstm_type_3": lstm_type_3() elif which == "cnn_type_1": pass + elif which == "tfann_type_1": tfann_type_1() else: pass # write code here @@ -35,6 +35,7 @@ def GetCurDF(cur, fp): openUrl.close() df = pd.read_json(r.decode()) df['date'] = df['date'].astype(np.int64) // 1000000000 + print(df.head()) return df class PastSampler: |