-
Notifications
You must be signed in to change notification settings - Fork 35
/
data_load_abandon.py
63 lines (52 loc) · 2.03 KB
/
data_load_abandon.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
本DataLoad将所有train文件下的csv文件进行训练,但没有将所有csv文件进行合并。
从每个csv中获取一次batchsize数据进行训练,这样并没有保证数据的随机性,所以训练效果会差。
摒弃这个版本。
"""
import os
import random
import numpy as np
import pandas as pd
class DataLoad(object):
_data_file_list = None
_current_file_index = 0
_extract_data_size = 0
_class_num = 0
_epoch = 0
def __init__(self, data_path, time_step, class_num):
if not os.path.exists(data_path):
print('%s is not found'%(data_path))
raise FileExistsError
self._time_step = time_step
self._extract_data_size = self._time_step
self._class_num = class_num
self._data_file_list = [os.path.join(data_path, file) for file in os.listdir(data_path)]
def get_next_batch(self, batchsize):
if self._current_file_index == len(self._data_file_list):
self._current_file_index = 0
self._epoch += 1
data = pd.read_csv(self._data_file_list[self._current_file_index])
self._current_file_index += 1
data_size = len(data.acc_x.values)
train_x = []
label_y = []
for i in range(batchsize):
start = random.randint(1, data_size-self._extract_data_size)
train_x.append(data.iloc[start:start+self._extract_data_size, 0:3].values)
label = [[0 for i in range(self._class_num)] for _ in range(self._extract_data_size)]
for s in range(self._extract_data_size):
j = data.iloc[start + s:start + s + 1, 6].values[0]
label[s][j] = 1
label_y.append(label)
return np.array(train_x), np.array(label_y)
@property
def epoch(self):
return self._epoch
@property
def data_file_list(self):
return self._data_file_list
if __name__ == '__main__':
data = DataLoad('./dataset/train/', time_step=10, class_num=2)
x,y = data.get_next_batch(1)
print(x)
print(y)