pyerualjetwork 2.3.5__tar.gz → 2.3.6__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 2.3.5
3
+ Version: 2.3.6
4
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
5
  Author: Hasan Can Beydili
6
6
  Author-email: tchasancan@gmail.com
@@ -143,7 +143,7 @@ def weight_post_process(
143
143
  list([numpy_arrays],[...]): posttrained weight matices of the model. .
144
144
  """
145
145
 
146
- for i in range(len(class_count)):
146
+ for i in range(class_count):
147
147
 
148
148
  W[0][i,:] = normalization(W[0][i,:])
149
149
 
@@ -143,7 +143,7 @@ def weight_post_process(
143
143
  list([numpy_arrays],[...]): posttrained weight matices of the model. .
144
144
  """
145
145
 
146
- for i in range(len(class_count)):
146
+ for i in range(class_count):
147
147
 
148
148
  W[0][i,:] = normalization(W[0][i,:])
149
149
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 2.3.5
3
+ Version: 2.3.6
4
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
5
  Author: Hasan Can Beydili
6
6
  Author-email: tchasancan@gmail.com
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
5
5
  setup(
6
6
 
7
7
  name = "pyerualjetwork",
8
- version = "2.3.5",
8
+ version = "2.3.6",
9
9
  author = "Hasan Can Beydili",
10
10
  author_email = "tchasancan@gmail.com",
11
11
  description= "Weights post process function added: [weight_post_process](optional after training before testing.), new function: manuel_balancer. And scaler_params added for scaled models.",
File without changes