pyerualjetwork 1.3.0__py3-none-any.whl → 1.3.1__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 +4 -4
- {pyerualjetwork-1.3.0.dist-info → pyerualjetwork-1.3.1.dist-info}/METADATA +1 -1
- pyerualjetwork-1.3.1.dist-info/RECORD +6 -0
- pyerualjetwork-1.3.0.dist-info/RECORD +0 -6
- {pyerualjetwork-1.3.0.dist-info → pyerualjetwork-1.3.1.dist-info}/WHEEL +0 -0
- {pyerualjetwork-1.3.0.dist-info → pyerualjetwork-1.3.1.dist-info}/top_level.txt +0 -0
plan/plan.py
CHANGED
@@ -207,8 +207,8 @@ def TrainPLAN(
|
|
207
207
|
TrainLabelsVisual = np.argmax(TrainLabelsVisual, axis=1)
|
208
208
|
|
209
209
|
plt.figure(figsize=(12, 6))
|
210
|
-
sns.kdeplot(TrainLabelsVisual, label='Real Outputs',
|
211
|
-
sns.kdeplot(TrainPredictions, label='Predictions',
|
210
|
+
sns.kdeplot(TrainLabelsVisual, label='Real Outputs', fill=True)
|
211
|
+
sns.kdeplot(TrainPredictions, label='Predictions', fill=True)
|
212
212
|
plt.legend()
|
213
213
|
plt.xlabel('Class')
|
214
214
|
plt.ylabel('Data size')
|
@@ -631,8 +631,8 @@ def TestPLAN(
|
|
631
631
|
TestLabelsVisual = np.argmax(TestLabelsVisual, axis=1)
|
632
632
|
|
633
633
|
plt.figure(figsize=(12, 6))
|
634
|
-
sns.kdeplot(TestLabelsVisual, label='Real Outputs',
|
635
|
-
sns.kdeplot(TestPredictions, label='Predictions',
|
634
|
+
sns.kdeplot(TestLabelsVisual, label='Real Outputs', fill=True)
|
635
|
+
sns.kdeplot(TestPredictions, label='Predictions', fill=True)
|
636
636
|
plt.legend()
|
637
637
|
plt.xlabel('Class')
|
638
638
|
plt.ylabel('Data size')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.1
|
4
4
|
Summary: Advanced python deep learning library. New Visualize parameter added ('y' or 'n') for TrainPLAN and TestPLAN funcs. (Documentation in desc. Examples in GİTHUB: https://github.com/HCB06/PyerualJetwork)
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
@@ -0,0 +1,6 @@
|
|
1
|
+
plan/__init__.py,sha256=4trwhtGaeJd2tncziQAKrPT-Jjz6Q8nBG0n3SlyH1a4,352
|
2
|
+
plan/plan.py,sha256=Ya1DP_im8vI5nkLcNLHpQYsnjSZ0IRqhUWWwYOfAVuw,42343
|
3
|
+
pyerualjetwork-1.3.1.dist-info/METADATA,sha256=pxKI2Yrwmnw1j8MPw9qIdzt3MHKfyWGhC0xi-N9cuHc,423
|
4
|
+
pyerualjetwork-1.3.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
5
|
+
pyerualjetwork-1.3.1.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
+
pyerualjetwork-1.3.1.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
plan/__init__.py,sha256=4trwhtGaeJd2tncziQAKrPT-Jjz6Q8nBG0n3SlyH1a4,352
|
2
|
-
plan/plan.py,sha256=GVJdUx0F1C-h5MJAVXTvWvgHzzS0Gs8ze28E6uXMnH4,42347
|
3
|
-
pyerualjetwork-1.3.0.dist-info/METADATA,sha256=uzCKaNbwe3LaChxpcAj5B68hLwFm-eKKUZ9JEHygpug,423
|
4
|
-
pyerualjetwork-1.3.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
5
|
-
pyerualjetwork-1.3.0.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
-
pyerualjetwork-1.3.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|