pyerualjetwork 2.3.8__tar.gz → 2.4.0__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.
- pyerualjetwork-2.4.0/PKG-INFO +7 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/plan_di/plan_di.py +4 -4
- pyerualjetwork-2.4.0/pyerualjetwork.egg-info/PKG-INFO +7 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/setup.py +2 -2
- pyerualjetwork-2.3.8/PKG-INFO +0 -7
- pyerualjetwork-2.3.8/pyerualjetwork.egg-info/PKG-INFO +0 -7
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/plan_bi/__init__.py +0 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/plan_bi/plan_bi.py +0 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/plan_di/__init__.py +0 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/pyerualjetwork.egg-info/SOURCES.txt +0 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/pyerualjetwork.egg-info/dependency_links.txt +0 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/pyerualjetwork.egg-info/top_level.txt +0 -0
- {pyerualjetwork-2.3.8 → pyerualjetwork-2.4.0}/setup.cfg +0 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pyerualjetwork
|
3
|
+
Version: 2.4.0
|
4
|
+
Summary: show_training parameter added for fit function[True, 'final' or any]. Code improvements
|
5
|
+
Author: Hasan Can Beydili
|
6
|
+
Author-email: tchasancan@gmail.com
|
7
|
+
Keywords: model evaluation,classifcation,pruning learning artficial neural networks
|
@@ -58,7 +58,7 @@ def fit(
|
|
58
58
|
x_train[0] = x_train[0].ravel()
|
59
59
|
x_train_size = len(x_train[0])
|
60
60
|
|
61
|
-
W =
|
61
|
+
W = weight_identification(
|
62
62
|
len(layers) - 1, len(class_count), neurons, x_train_size)
|
63
63
|
|
64
64
|
trained_W = [1] * len(W)
|
@@ -80,10 +80,10 @@ def fit(
|
|
80
80
|
|
81
81
|
for Lindex, Layer in enumerate(layers):
|
82
82
|
|
83
|
-
neural_layer =
|
83
|
+
neural_layer = normalization(neural_layer)
|
84
84
|
|
85
85
|
if Layer == 'fex':
|
86
|
-
W[Lindex] =
|
86
|
+
W[Lindex] = fex(neural_layer, W[Lindex], True, y[index])
|
87
87
|
|
88
88
|
for i, w in enumerate(W):
|
89
89
|
trained_W[i] = trained_W[i] + w
|
@@ -113,7 +113,7 @@ def fit(
|
|
113
113
|
|
114
114
|
plt.show()
|
115
115
|
|
116
|
-
W =
|
116
|
+
W = weight_identification(
|
117
117
|
len(layers) - 1, len(class_count), neurons, x_train_size)
|
118
118
|
|
119
119
|
uni_end_time = time.time()
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pyerualjetwork
|
3
|
+
Version: 2.4.0
|
4
|
+
Summary: show_training parameter added for fit function[True, 'final' or any]. Code improvements
|
5
|
+
Author: Hasan Can Beydili
|
6
|
+
Author-email: tchasancan@gmail.com
|
7
|
+
Keywords: model evaluation,classifcation,pruning learning artficial neural networks
|
@@ -5,10 +5,10 @@ from setuptools import setup, find_packages
|
|
5
5
|
setup(
|
6
6
|
|
7
7
|
name = "pyerualjetwork",
|
8
|
-
version = "2.
|
8
|
+
version = "2.4.0",
|
9
9
|
author = "Hasan Can Beydili",
|
10
10
|
author_email = "tchasancan@gmail.com",
|
11
|
-
description= "
|
11
|
+
description= "show_training parameter added for fit function[True, 'final' or any]. Code improvements",
|
12
12
|
packages = find_packages(),
|
13
13
|
keywords = ["model evaluation", "classifcation", 'pruning learning artficial neural networks'],
|
14
14
|
|
pyerualjetwork-2.3.8/PKG-INFO
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: pyerualjetwork
|
3
|
-
Version: 2.3.8
|
4
|
-
Summary: Weights post process function added: [weight_post_process](optional after training before testing.), new function: manuel_balancer. And scaler_params added for scaled models.
|
5
|
-
Author: Hasan Can Beydili
|
6
|
-
Author-email: tchasancan@gmail.com
|
7
|
-
Keywords: model evaluation,classifcation,pruning learning artficial neural networks
|
@@ -1,7 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: pyerualjetwork
|
3
|
-
Version: 2.3.8
|
4
|
-
Summary: Weights post process function added: [weight_post_process](optional after training before testing.), new function: manuel_balancer. And scaler_params added for scaled models.
|
5
|
-
Author: Hasan Can Beydili
|
6
|
-
Author-email: tchasancan@gmail.com
|
7
|
-
Keywords: model evaluation,classifcation,pruning learning artficial neural networks
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|