-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.py
137 lines (94 loc) · 3.32 KB
/
tools.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import io
import json
import os.path
import time
def make_input_array(img_content):
"""Из данных изображения составляет список значений для входного слоя нейронной сети
:param img_content: массив содержимого файла изображения
:type img_content: list
:return: список значений для входного слоя нейронной сети
:rtype: list[float]
"""
result = []
values = {}
j = 0
find_marks = 2
while find_marks:
if not (str(img_content[j]).find("#000000") == -1):
values[str(img_content[j])[3]] = 1
find_marks -= 1
if not (str(img_content[j]).find("#FFFFFF") == -1):
values[str(img_content[j])[3]] = 0
find_marks -= 1
j += 1
for i in range(j, len(img_content)):
for j in range(3, len(img_content[i])):
if not (str(img_content[i])[j] == '"'):
result.append(values[str(img_content[i])[j]])
else:
break
return result
def read_img_file(img_path):
"""Читает файл и получает из него список значений для входного слоя нейронной сети
:param img_path: путь к файлу изображения
:type img_path: str
:return: список значений для входного слоя нейронной сети
:rtype: list[float]
"""
file_link = io.open(img_path, 'r+b', 0)
img_content = file_link.readlines()
arr = make_input_array(img_content)
return arr
def get_output(i):
"""Составляет эталонный набор значений, в котором все нули, а i-й элемент — 1
:param i: индекс выхода, который будет установлен в 1
:type i: int
:return: эталонный набор значений
:rtype: list[float]
"""
result = []
for j in range(10):
result.append(0)
result[i] = 1
return result
def import_json_file(filename):
if not os.path.exists(filename):
return False
r = ''
f = open(filename)
for line in f:
r += line
f.close()
return json.loads(r)
def export_json_file(filename, data):
r = json.dumps(data, sort_keys=True, indent=4)
f = open(filename, 'w')
f.write(r)
f.close()
def export_file(filename, data):
f = open(filename, 'w')
f.write(data)
f.close()
class Profiler:
def __init__(self, name):
self.name = name
self.start = time.time()
def spent(self):
return time.time()-self.start
def log(self):
print("{}: {} s".format(self.name, self.spent()))
def get_amplitude(input):
min_value = float('inf')
max_value = float('-inf')
for x in input:
max_value = x if x > max_value else max_value
min_value = x if x < min_value else min_value
return max_value-min_value
def format_output(output, precision):
return [round(x, precision) for x in output]
def print_output(name, nn):
print(name)
print(format_output(nn.get_output(), 0))
print(format_output(nn.get_output(), 4))
print("noise: {}".format(round(nn.get_noise(), 4)))
print()