pyerualjetwork 4.2.2b2__py3-none-any.whl → 4.2.2b4__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/plan_cuda.py +1 -7
- pyerualjetwork/planeat.py +4 -4
- {pyerualjetwork-4.2.2b2.dist-info → pyerualjetwork-4.2.2b4.dist-info}/METADATA +1 -1
- {pyerualjetwork-4.2.2b2.dist-info → pyerualjetwork-4.2.2b4.dist-info}/RECORD +7 -7
- {pyerualjetwork-4.2.2b2.dist-info → pyerualjetwork-4.2.2b4.dist-info}/WHEEL +0 -0
- {pyerualjetwork-4.2.2b2.dist-info → pyerualjetwork-4.2.2b4.dist-info}/top_level.txt +0 -0
pyerualjetwork/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
__version__ = "4.2.
|
1
|
+
__version__ = "4.2.2b4"
|
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/plan_cuda.py
CHANGED
@@ -274,18 +274,12 @@ def learner(x_train, y_train, optimizer, strategy='accuracy', gen=None, batch_si
|
|
274
274
|
x_train = transfer_to_gpu(x_train, dtype=dtype)
|
275
275
|
y_train = transfer_to_gpu(y_train, dtype=y_train.dtype)
|
276
276
|
|
277
|
-
x_test = transfer_to_gpu(x_test, dtype=dtype)
|
278
|
-
y_test = transfer_to_gpu(y_test, dtype=y_train.dtype)
|
279
|
-
|
280
277
|
from .data_operations_cuda import batcher
|
281
278
|
|
282
279
|
elif memory == 'cpu':
|
283
280
|
x_train = transfer_to_cpu(x_train, dtype=dtype)
|
284
281
|
y_train = transfer_to_cpu(y_train, dtype=y_train.dtype)
|
285
|
-
|
286
|
-
x_test = transfer_to_cpu(x_test, dtype=dtype)
|
287
|
-
y_test = transfer_to_cpu(y_test, dtype=y_train.dtype)
|
288
|
-
|
282
|
+
|
289
283
|
from .data_operations import batcher
|
290
284
|
|
291
285
|
else:
|
pyerualjetwork/planeat.py
CHANGED
@@ -17,10 +17,10 @@ import random
|
|
17
17
|
import math
|
18
18
|
|
19
19
|
### LIBRARY IMPORTS ###
|
20
|
-
from plan import feed_forward
|
21
|
-
from data_operations import normalization
|
22
|
-
from ui import loading_bars, initialize_loading_bar
|
23
|
-
from activation_functions import apply_activation, all_activations
|
20
|
+
from .plan import feed_forward
|
21
|
+
from .data_operations import normalization
|
22
|
+
from .ui import loading_bars, initialize_loading_bar
|
23
|
+
from .activation_functions import apply_activation, all_activations
|
24
24
|
|
25
25
|
def define_genomes(input_shape, output_shape, population_size, dtype=np.float32):
|
26
26
|
"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 4.2.
|
3
|
+
Version: 4.2.2b4
|
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=W84gU5_QHLqxGImXR7xeq2n_LiBCqtoHJTEGoLUPilI,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
|
@@ -12,13 +12,13 @@ pyerualjetwork/metrics_cuda.py,sha256=73h9GC7XwmnFCVzFEEiPQfF8CwHIz2wsCbxpZrJtYg
|
|
12
12
|
pyerualjetwork/model_operations.py,sha256=RKqnh7-MByFosxqme4q4jC1lOndX26O-OVXYV6ZxoEE,12965
|
13
13
|
pyerualjetwork/model_operations_cuda.py,sha256=XnKKq54ZLaqCm-NaJ6d8IToACKcKg2Ttq6moowVRRWo,13365
|
14
14
|
pyerualjetwork/plan.py,sha256=mACNJnHlPkeqsHDYw0BVDXp8PCOlwWsF-1KD4a2Bk7U,30431
|
15
|
-
pyerualjetwork/plan_cuda.py,sha256=
|
16
|
-
pyerualjetwork/planeat.py,sha256=
|
15
|
+
pyerualjetwork/plan_cuda.py,sha256=G4Lo7FnfHfmiv1mZdbT0-BWtjoWUyxViRj6xAj4Hwlc,31784
|
16
|
+
pyerualjetwork/planeat.py,sha256=hMSyrSPipOxKgOqyoAiZtniVgxPQxc4rRsvEEMOS2Ng,40757
|
17
17
|
pyerualjetwork/planeat_cuda.py,sha256=9uopmM-gTZpSb0EOExrOZPT8FF5BqDdEfCX0zYQb9QU,40712
|
18
18
|
pyerualjetwork/ui.py,sha256=wu2BhU1k-w3Kcho5Jtq4SEKe68ftaUeRGneUOSCVDjU,575
|
19
19
|
pyerualjetwork/visualizations.py,sha256=QaYSIyVkJZ8NqpBKArQKkI1y37nCQo_KIM98IMssnRc,28766
|
20
20
|
pyerualjetwork/visualizations_cuda.py,sha256=F60vQ92AXlMgBka3InXnOtGoM25vQJAlBIU2AlYTwks,29200
|
21
|
-
pyerualjetwork-4.2.
|
22
|
-
pyerualjetwork-4.2.
|
23
|
-
pyerualjetwork-4.2.
|
24
|
-
pyerualjetwork-4.2.
|
21
|
+
pyerualjetwork-4.2.2b4.dist-info/METADATA,sha256=z6eJ-HSJllMFcpo08y8wg7Ad1cyX0B04egOQqIjwSog,7914
|
22
|
+
pyerualjetwork-4.2.2b4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
23
|
+
pyerualjetwork-4.2.2b4.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
|
24
|
+
pyerualjetwork-4.2.2b4.dist-info/RECORD,,
|
File without changes
|
File without changes
|