pyerualjetwork 4.6.2__py3-none-any.whl → 4.6.3__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/model_operations.py +2 -2
- pyerualjetwork/model_operations_cuda.py +2 -2
- pyerualjetwork/planeat.py +1 -1
- pyerualjetwork/planeat_cuda.py +1 -1
- {pyerualjetwork-4.6.2.dist-info → pyerualjetwork-4.6.3.dist-info}/METADATA +1 -1
- {pyerualjetwork-4.6.2.dist-info → pyerualjetwork-4.6.3.dist-info}/RECORD +9 -9
- {pyerualjetwork-4.6.2.dist-info → pyerualjetwork-4.6.3.dist-info}/WHEEL +0 -0
- {pyerualjetwork-4.6.2.dist-info → pyerualjetwork-4.6.3.dist-info}/top_level.txt +0 -0
pyerualjetwork/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
__version__ = "4.6.
|
1
|
+
__version__ = "4.6.3"
|
2
2
|
__update__ = """* Changes: https://github.com/HCB06/PyerualJetwork/blob/main/CHANGES
|
3
3
|
* PyerualJetwork Homepage: https://github.com/HCB06/PyerualJetwork/tree/main
|
4
4
|
* PyerualJetwork document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf
|
@@ -326,7 +326,7 @@ def predict_model_ssd(Input, model_name, model_path='', dtype=np.float32):
|
|
326
326
|
|
327
327
|
layer = Input
|
328
328
|
for i in range(len(W)):
|
329
|
-
if i != len(W) - 1: layer = apply_activation(layer, activation_potentiation[i])
|
329
|
+
if i != len(W) - 1 and i != 0: layer = apply_activation(layer, activation_potentiation[i])
|
330
330
|
layer = layer @ W[i].T
|
331
331
|
|
332
332
|
return layer
|
@@ -405,7 +405,7 @@ def predict_model_ram(Input, W, scaler_params=None, activation_potentiation=['li
|
|
405
405
|
|
406
406
|
layer = Input
|
407
407
|
for i in range(len(W)):
|
408
|
-
if i != len(W) - 1: layer = apply_activation(layer, activation_potentiation[i])
|
408
|
+
if i != len(W) - 1 and i != 0: layer = apply_activation(layer, activation_potentiation[i])
|
409
409
|
layer = layer @ W[i].T
|
410
410
|
|
411
411
|
return layer
|
@@ -336,7 +336,7 @@ def predict_model_ssd(Input, model_name, model_path='', dtype=cp.float32):
|
|
336
336
|
|
337
337
|
layer = Input
|
338
338
|
for i in range(len(W)):
|
339
|
-
if i != len(W) - 1: layer = apply_activation(layer, activation_potentiation[i])
|
339
|
+
if i != len(W) - 1 and i != 0: layer = apply_activation(layer, activation_potentiation[i])
|
340
340
|
layer = layer @ W[i].T
|
341
341
|
|
342
342
|
return layer
|
@@ -417,7 +417,7 @@ def predict_model_ram(Input, W, scaler_params=None, activation_potentiation=['li
|
|
417
417
|
|
418
418
|
layer = Input
|
419
419
|
for i in range(len(W)):
|
420
|
-
if i != len(W) - 1: layer = apply_activation(layer, activation_potentiation[i])
|
420
|
+
if i != len(W) - 1 and i != 0: layer = apply_activation(layer, activation_potentiation[i])
|
421
421
|
layer = layer @ W[i].T
|
422
422
|
|
423
423
|
return layer
|
pyerualjetwork/planeat.py
CHANGED
@@ -517,7 +517,7 @@ def evaluate(Input, weights, activation_potentiations, is_mlp=False):
|
|
517
517
|
if is_mlp:
|
518
518
|
layer = Input
|
519
519
|
for i in range(len(weights)):
|
520
|
-
if i != len(weights) - 1: layer = apply_activation(layer, activation_potentiations[i])
|
520
|
+
if i != len(weights) - 1 and i != 0: layer = apply_activation(layer, activation_potentiations[i])
|
521
521
|
layer = layer @ weights[i].T
|
522
522
|
|
523
523
|
return layer
|
pyerualjetwork/planeat_cuda.py
CHANGED
@@ -519,7 +519,7 @@ def evaluate(Input, weights, activation_potentiations, is_mlp=False):
|
|
519
519
|
|
520
520
|
layer = Input
|
521
521
|
for i in range(len(weights)):
|
522
|
-
if i != len(weights) - 1: layer = apply_activation(layer, activation_potentiations[i])
|
522
|
+
if i != len(weights) - 1 and i != 0: layer = apply_activation(layer, activation_potentiations[i])
|
523
523
|
layer = layer @ weights[i].T
|
524
524
|
|
525
525
|
return layer
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 4.6.
|
3
|
+
Version: 4.6.3
|
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=VwT_tzGQ_j-4Ou_OSz3X2NqF9XQ3NkhjYzUFo6K_WeI,1279
|
2
2
|
pyerualjetwork/activation_functions.py,sha256=Ms0AGBqkJuCA42ht64MSQnO54Td_1eDGquedpoBDVbc,7642
|
3
3
|
pyerualjetwork/activation_functions_cuda.py,sha256=5y1Ti3GDfDteQDCUmODwe7tAyDAUlDTKmIikChQ8d6g,7772
|
4
4
|
pyerualjetwork/data_operations.py,sha256=_7rS4Addogv25mpMUf0mjBDqTYFzrBp4rGA1ji08VkI,16001
|
@@ -10,16 +10,16 @@ pyerualjetwork/loss_functions_cuda.py,sha256=C93IZJcrOpT6HMK9x1O4AHJWXYTkN5WZiqd
|
|
10
10
|
pyerualjetwork/memory_operations.py,sha256=0yCOHcgiNyF4ccMcRlL1Q9F_byG4nzjhmkbpXE_yU6E,13401
|
11
11
|
pyerualjetwork/metrics.py,sha256=q7MkhnZDRbCjFBDDfUgrl8lBYnUT_1ro1LxeBq105pI,6077
|
12
12
|
pyerualjetwork/metrics_cuda.py,sha256=73h9GC7XwmnFCVzFEEiPQfF8CwHIz2wsCbxpZrJtYgw,5061
|
13
|
-
pyerualjetwork/model_operations.py,sha256=
|
14
|
-
pyerualjetwork/model_operations_cuda.py,sha256=-
|
13
|
+
pyerualjetwork/model_operations.py,sha256=fr64XCwgl1YRh5nP3sEkvQORKHb-2lF_a4KjclNkZfY,15522
|
14
|
+
pyerualjetwork/model_operations_cuda.py,sha256=-Kv8fYqHSU0L9FalOsQ7EWCwCEwjgUySObyueOqCH_o,16134
|
15
15
|
pyerualjetwork/plan.py,sha256=UyIvPmvHCHwczlc9KHolE4y6CPEeBfhnRN5yznSbnoM,23028
|
16
16
|
pyerualjetwork/plan_cuda.py,sha256=iteqgv7x9Z2Pj4vGOZs6HXS3r0bNaF_smr7ZXaOdRnw,23990
|
17
|
-
pyerualjetwork/planeat.py,sha256=
|
18
|
-
pyerualjetwork/planeat_cuda.py,sha256=
|
17
|
+
pyerualjetwork/planeat.py,sha256=KgI1RCNvYxGfw2wQ7dWFLLZrPE6ys9agS4bjodq2W9U,45312
|
18
|
+
pyerualjetwork/planeat_cuda.py,sha256=K0YWrH2POXsD9xiUq9zqPulan57uspeIa16XjknsNwk,45357
|
19
19
|
pyerualjetwork/ui.py,sha256=JBTFYz5R24XwNKhA3GSW-oYAoiIBxAE3kFGXkvm5gqw,656
|
20
20
|
pyerualjetwork/visualizations.py,sha256=utnX9zQhzmtvBJLOLNGm2jecVVk4zHXABQdjb0XzJac,28352
|
21
21
|
pyerualjetwork/visualizations_cuda.py,sha256=gnoaaazZ-nc9E1ImqXrZBRgQ4Rnpi2qh2yGJ2eLKMlE,28807
|
22
|
-
pyerualjetwork-4.6.
|
23
|
-
pyerualjetwork-4.6.
|
24
|
-
pyerualjetwork-4.6.
|
25
|
-
pyerualjetwork-4.6.
|
22
|
+
pyerualjetwork-4.6.3.dist-info/METADATA,sha256=b6-XwpCnTnMIO5YVBJ3wA378PWyD9zde598dI_1_Gqg,7505
|
23
|
+
pyerualjetwork-4.6.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
24
|
+
pyerualjetwork-4.6.3.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
|
25
|
+
pyerualjetwork-4.6.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|