pyerualjetwork 2.6.5__py3-none-any.whl → 2.6.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plan/plan.py +5 -5
- {pyerualjetwork-2.6.5.dist-info → pyerualjetwork-2.6.7.dist-info}/METADATA +1 -1
- pyerualjetwork-2.6.7.dist-info/RECORD +6 -0
- pyerualjetwork-2.6.5.dist-info/RECORD +0 -6
- {pyerualjetwork-2.6.5.dist-info → pyerualjetwork-2.6.7.dist-info}/WHEEL +0 -0
- {pyerualjetwork-2.6.5.dist-info → pyerualjetwork-2.6.7.dist-info}/top_level.txt +0 -0
plan/plan.py
CHANGED
@@ -170,11 +170,11 @@ def fit(
|
|
170
170
|
|
171
171
|
if row != 0:
|
172
172
|
|
173
|
-
mat =
|
173
|
+
mat = LTPW[0][j,:].reshape(row, col)
|
174
174
|
suptitle_info = 'Neurons Learning Progress: % '
|
175
175
|
title_info = f'{j+1}. Neuron'
|
176
176
|
|
177
|
-
mat =
|
177
|
+
mat = LTPW[0][j,:].reshape(row, col)
|
178
178
|
|
179
179
|
ax[j].imshow(mat, interpolation='sinc', cmap='viridis')
|
180
180
|
|
@@ -186,7 +186,7 @@ def fit(
|
|
186
186
|
|
187
187
|
else:
|
188
188
|
|
189
|
-
mat =
|
189
|
+
mat = LTPW[0]
|
190
190
|
ax.imshow(mat, interpolation='sinc', cmap='viridis')
|
191
191
|
suptitle_info = 'Weight Learning Progress: % '
|
192
192
|
title_info = 'Weight Matrix Of Fex Layer'
|
@@ -200,7 +200,7 @@ def fit(
|
|
200
200
|
plt.pause(0.1)
|
201
201
|
|
202
202
|
|
203
|
-
|
203
|
+
STPW = weight_identification(
|
204
204
|
len(layers) - 1, len(class_count), neurons, x_train_size)
|
205
205
|
|
206
206
|
|
@@ -210,7 +210,7 @@ def fit(
|
|
210
210
|
|
211
211
|
for j in range(len(class_count)):
|
212
212
|
|
213
|
-
mat =
|
213
|
+
mat = LTPW[0][j,:].reshape(row, col)
|
214
214
|
|
215
215
|
ax[j].imshow(mat, interpolation='sinc', cmap='viridis')
|
216
216
|
ax[j].set_aspect('equal')
|
@@ -0,0 +1,6 @@
|
|
1
|
+
plan/__init__.py,sha256=gmaz8lnQfl18MbOQwabBUPmShajK5S99jfyY-hQe8tc,502
|
2
|
+
plan/plan.py,sha256=p8BW7ajzVD2lSQz6m6wlcwBKOBelVHpqVim3H200IgY,53304
|
3
|
+
pyerualjetwork-2.6.7.dist-info/METADATA,sha256=w_Qo4Gz9UtizFl7rZpics7f0MpjbG-pcr-iRzVISV2w,338
|
4
|
+
pyerualjetwork-2.6.7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
5
|
+
pyerualjetwork-2.6.7.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
+
pyerualjetwork-2.6.7.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
plan/__init__.py,sha256=gmaz8lnQfl18MbOQwabBUPmShajK5S99jfyY-hQe8tc,502
|
2
|
-
plan/plan.py,sha256=QP0z-MfKFhSnWqAEBLZ2L1sJUhTnkefeXAsgJTA_fYU,53321
|
3
|
-
pyerualjetwork-2.6.5.dist-info/METADATA,sha256=GbAd2Jfv-c3Lt_Ut0MgjmHg1ETBNvAePdVqRiXA-pWw,338
|
4
|
-
pyerualjetwork-2.6.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
5
|
-
pyerualjetwork-2.6.5.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
-
pyerualjetwork-2.6.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|