pyerualjetwork 4.2.6b5__py3-none-any.whl → 4.2.6b7__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.
- pyerualjetwork/__init__.py +1 -1
- pyerualjetwork/planeat.py +1 -6
- pyerualjetwork/planeat_cuda.py +1 -7
- {pyerualjetwork-4.2.6b5.dist-info → pyerualjetwork-4.2.6b7.dist-info}/METADATA +1 -1
- {pyerualjetwork-4.2.6b5.dist-info → pyerualjetwork-4.2.6b7.dist-info}/RECORD +7 -7
- {pyerualjetwork-4.2.6b5.dist-info → pyerualjetwork-4.2.6b7.dist-info}/WHEEL +0 -0
- {pyerualjetwork-4.2.6b5.dist-info → pyerualjetwork-4.2.6b7.dist-info}/top_level.txt +0 -0
pyerualjetwork/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
__version__ = "4.2.
|
1
|
+
__version__ = "4.2.6b7"
|
2
2
|
__update__ = "* Changes: https://github.com/HCB06/PyerualJetwork/blob/main/CHANGES\n* PyerualJetwork Homepage: https://github.com/HCB06/PyerualJetwork/tree/main\n* PyerualJetwork document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf\n* YouTube tutorials: https://www.youtube.com/@HasanCanBeydili"
|
3
3
|
|
4
4
|
def print_version(__version__):
|
pyerualjetwork/planeat.py
CHANGED
@@ -721,10 +721,9 @@ def mutation(weight,
|
|
721
721
|
max_threshold = row_end * col_end
|
722
722
|
|
723
723
|
threshold = threshold * genome_fitness
|
724
|
-
performance_control = 0
|
725
724
|
new_threshold = threshold
|
726
725
|
|
727
|
-
|
726
|
+
for _ in range(max_threshold):
|
728
727
|
|
729
728
|
selected_row = int(random.uniform(start, row_end))
|
730
729
|
selected_col = int(random.uniform(start, col_end))
|
@@ -733,14 +732,10 @@ def mutation(weight,
|
|
733
732
|
|
734
733
|
if max_threshold > new_threshold:
|
735
734
|
new_threshold += threshold
|
736
|
-
performance_control += 1
|
737
|
-
pass
|
738
735
|
|
739
736
|
else:
|
740
737
|
break
|
741
738
|
|
742
|
-
if performance_control == max_threshold:
|
743
|
-
break
|
744
739
|
|
745
740
|
activation_mutate_prob = 1 - activation_mutate_prob
|
746
741
|
potential_activation_mutation = random.uniform(0, 1)
|
pyerualjetwork/planeat_cuda.py
CHANGED
@@ -727,9 +727,8 @@ def mutation(weight,
|
|
727
727
|
|
728
728
|
threshold = threshold * genome_fitness
|
729
729
|
new_threshold = threshold
|
730
|
-
performance_control = 0
|
731
730
|
|
732
|
-
|
731
|
+
for _ in range(max_threshold):
|
733
732
|
|
734
733
|
selected_row = int(random.uniform(start, row_end))
|
735
734
|
selected_col = int(random.uniform(start, col_end))
|
@@ -738,14 +737,9 @@ def mutation(weight,
|
|
738
737
|
|
739
738
|
if max_threshold > new_threshold:
|
740
739
|
new_threshold += threshold
|
741
|
-
performance_control += 1
|
742
|
-
pass
|
743
740
|
|
744
741
|
else:
|
745
742
|
break
|
746
|
-
|
747
|
-
if performance_control >= max_threshold:
|
748
|
-
break
|
749
743
|
|
750
744
|
activation_mutate_prob = 1 - activation_mutate_prob
|
751
745
|
potential_activation_mutation = random.uniform(0, 1)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 4.2.
|
3
|
+
Version: 4.2.6b7
|
4
4
|
Summary: PyerualJetwork is a machine learning library supported with GPU(CUDA) acceleration written in Python for professionals and researchers including with PLAN algorithm, PLANEAT algorithm (genetic optimization). Also includes data pre-process and memory manegament
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pyerualjetwork/__init__.py,sha256=
|
1
|
+
pyerualjetwork/__init__.py,sha256=aSpzedunXtPkNq7QFMdpgcb6qY13-sZWJ_dFdjfMP7o,641
|
2
2
|
pyerualjetwork/activation_functions.py,sha256=WWOdMd5pI6ZKe-ieKCIsKAYPQODHuXYxx7tzhA5xjes,11767
|
3
3
|
pyerualjetwork/activation_functions_cuda.py,sha256=KmXJ5Cdig46XAMYakXFPEOlxSxtFJjD21-i3nGtxPjE,11807
|
4
4
|
pyerualjetwork/data_operations.py,sha256=pb5CqJ0Th6fCjTNMCtqQMiwH3KezTxAijacglsKUxmY,14730
|
@@ -13,12 +13,12 @@ pyerualjetwork/model_operations.py,sha256=RKqnh7-MByFosxqme4q4jC1lOndX26O-OVXYV6
|
|
13
13
|
pyerualjetwork/model_operations_cuda.py,sha256=XnKKq54ZLaqCm-NaJ6d8IToACKcKg2Ttq6moowVRRWo,13365
|
14
14
|
pyerualjetwork/plan.py,sha256=UzCTFCA9cTv9ITCtsqfJ1g02rCMyescoIV6j1amvYGw,32134
|
15
15
|
pyerualjetwork/plan_cuda.py,sha256=hpXZl3h7B1qAVYW-gZebwKMZd4-ftAZ-u05teOJjsno,33525
|
16
|
-
pyerualjetwork/planeat.py,sha256=
|
17
|
-
pyerualjetwork/planeat_cuda.py,sha256=
|
16
|
+
pyerualjetwork/planeat.py,sha256=deg805fpYcqJstg4Z25E63vwdvZeQOD4Skm8ub0zU_0,38883
|
17
|
+
pyerualjetwork/planeat_cuda.py,sha256=uwbEU_GG3TSaIYUhaU8k13n3bSwFDhCWug4kSLvOHb4,38846
|
18
18
|
pyerualjetwork/ui.py,sha256=wu2BhU1k-w3Kcho5Jtq4SEKe68ftaUeRGneUOSCVDjU,575
|
19
19
|
pyerualjetwork/visualizations.py,sha256=1SKMZaJ80OD2qHUyMxW1IOv8zwmxzMPxclfbeq1Xr4g,28772
|
20
20
|
pyerualjetwork/visualizations_cuda.py,sha256=KbMhfsLlxujy_i3QrwCf734Q-k6d7Zn_7CEbm3gzK9w,29186
|
21
|
-
pyerualjetwork-4.2.
|
22
|
-
pyerualjetwork-4.2.
|
23
|
-
pyerualjetwork-4.2.
|
24
|
-
pyerualjetwork-4.2.
|
21
|
+
pyerualjetwork-4.2.6b7.dist-info/METADATA,sha256=LyaaWAnnLG76J7BgTTMrVZVOp4tsYicuUQj1nI7rdgo,7454
|
22
|
+
pyerualjetwork-4.2.6b7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
23
|
+
pyerualjetwork-4.2.6b7.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
|
24
|
+
pyerualjetwork-4.2.6b7.dist-info/RECORD,,
|
File without changes
|
File without changes
|