pyerualjetwork 1.1.6__tar.gz → 1.1.8__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: 1.1.6
3
+ Version: 1.1.8
4
4
  Summary: Advanced python deep learning library.(More document coming soon..)
5
5
  Author: Hasan Can Beydili
6
6
  Author-email: tchasancan@gmail.com
@@ -142,7 +142,6 @@ def TrainPLAN(
142
142
  print(Fore.GREEN + "Train Started with 0 ERROR" + Style.RESET_ALL,)
143
143
  TrainPredictions = [1] * len(Labels)
144
144
  true = 0
145
- Inputs, Labels = AutoBalancer(Inputs, Labels, ClassCount)
146
145
  StartTime = time.time()
147
146
  for index, inp in enumerate(Inputs):
148
147
  UniStartTime = time.time()
@@ -1045,7 +1044,7 @@ def AutoBalancer(TrainInputs, TrainLabels, ClassCount):
1045
1044
  BalancedInputs = [TrainInputs[idx] for idx in BalancedIndices]
1046
1045
  BalancedLabels = [TrainLabels[idx] for idx in BalancedIndices]
1047
1046
 
1048
- print(Fore.GREEN + "All Training Data Succesfully Balanced from: " + str(len(TrainInputs)) + " to: " + str(len(BalancedInputs)) + ". from: AutoBalancer ")
1047
+ print(Fore.GREEN + "All Training Data Succesfully Balanced from: " + str(len(TrainInputs)) + " to: " + str(len(BalancedInputs)) + ". from: AutoBalancer " + Style.RESET_ALL)
1049
1048
  time.sleep(1.5)
1050
1049
  except:
1051
1050
  print(Fore.RED + "ERROR: Inputs and labels must be same length check parameters" + infoAutoBalancer)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 1.1.6
3
+ Version: 1.1.8
4
4
  Summary: Advanced python deep learning library.(More document coming soon..)
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 = "1.1.6",
8
+ version = "1.1.8",
9
9
  author = "Hasan Can Beydili",
10
10
  author_email = "tchasancan@gmail.com",
11
11
  description= "Advanced python deep learning library.(More document coming soon..)",
File without changes