pyerualjetwork 1.2.9__tar.gz → 1.3.1__tar.gz

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.
@@ -1,8 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 1.2.9
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)
3
+ Version: 1.3.1
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
7
7
  Keywords: model evaluation,classifcation,pruning learning artficial neural networks
8
- Provides-Extra: visualization
@@ -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', shade=True)
211
- sns.kdeplot(TrainPredictions, label='Predictions', shade=True)
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', shade=True)
635
- sns.kdeplot(TestPredictions, label='Predictions', shade=True)
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,8 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 1.2.9
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)
3
+ Version: 1.3.1
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
7
7
  Keywords: model evaluation,classifcation,pruning learning artficial neural networks
8
- Provides-Extra: visualization
@@ -4,5 +4,4 @@ plan/plan.py
4
4
  pyerualjetwork.egg-info/PKG-INFO
5
5
  pyerualjetwork.egg-info/SOURCES.txt
6
6
  pyerualjetwork.egg-info/dependency_links.txt
7
- pyerualjetwork.egg-info/requires.txt
8
7
  pyerualjetwork.egg-info/top_level.txt
@@ -5,23 +5,12 @@ from setuptools import setup, find_packages
5
5
  setup(
6
6
 
7
7
  name = "pyerualjetwork",
8
- version = "1.2.9",
8
+ version = "1.3.1",
9
9
  author = "Hasan Can Beydili",
10
10
  author_email = "tchasancan@gmail.com",
11
- description= "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)",
11
+ description= "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)",
12
12
  packages = find_packages(),
13
13
  keywords = ["model evaluation", "classifcation", 'pruning learning artficial neural networks'],
14
- install_requires=[
15
- 'numpy',
16
- 'scipy',
17
- 'time',
18
- 'math',
19
- 'colorama',
20
- 'typing'
21
- ],
22
-
23
- extras_require={
24
- 'visualization': ['matplotlib','seaborn']
25
- }
14
+
26
15
 
27
16
  )
@@ -1,10 +0,0 @@
1
- numpy
2
- scipy
3
- time
4
- math
5
- colorama
6
- typing
7
-
8
- [visualization]
9
- matplotlib
10
- seaborn
File without changes