From 4025141db24ad73e8795fc4360a1b7668d05ebbf Mon Sep 17 00:00:00 2001 From: Newnius Date: Fri, 1 May 2020 17:28:32 +0800 Subject: [PATCH] update --- .idea/workspace.xml | 37 ++++++++++++++++++------------------- serve.py | 2 +- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index caeeda1..02831af 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -3,7 +3,6 @@ - diff --git a/serve.py b/serve.py index 785532b..93314c0 100644 --- a/serve.py +++ b/serve.py @@ -212,7 +212,7 @@ class MyHandler(BaseHTTPRequestHandler): with open(config.train_data_path, 'r') as f: q = deque(f, config.time_step - 1) df = pd.read_csv(StringIO(''.join(q)), usecols=config.feature_and_label_columns) - + print(df) df.append(data, ignore_index=True) df.to_csv('./data/test_data.csv')