pyerualjetwork 5.27__py3-none-any.whl → 5.28a0__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.
@@ -42,7 +42,7 @@ PyerualJetwork document: https://github.com/HCB06/PyerualJetwork/blob/main/Welco
42
42
  - Contact: tchasancan@gmail.com
43
43
  """
44
44
 
45
- __version__ = "5.27"
45
+ __version__ = "5.28a0"
46
46
  __update__ = """* Changes: https://github.com/HCB06/PyerualJetwork/blob/main/CHANGES
47
47
  * PyerualJetwork Homepage: https://github.com/HCB06/PyerualJetwork/tree/main
48
48
  * PyerualJetwork document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf
pyerualjetwork/neu_cpu.py CHANGED
@@ -307,9 +307,9 @@ def learn(x_train, y_train, optimizer, gen, pop_size, fit_start=True, batch_size
307
307
  progress.last_print_n = 0
308
308
  progress.update(0)
309
309
 
310
- for j in range(pop_size):
310
+ x_train_batch, y_train_batch = batcher(x_train, y_train, batch_size=batch_size)
311
311
 
312
- x_train_batch, y_train_batch = batcher(x_train, y_train, batch_size=batch_size)
312
+ for j in range(pop_size):
313
313
 
314
314
  if fit_start is True and i == 0:
315
315
  if start_this_act is not None and j == 0:
@@ -316,9 +316,9 @@ def learn(x_train, y_train, optimizer, gen, pop_size, fit_start=True, batch_size
316
316
  progress.last_print_n = 0
317
317
  progress.update(0)
318
318
 
319
- for j in range(pop_size):
319
+ x_train_batch, y_train_batch = batcher(x_train, y_train, batch_size=batch_size)
320
320
 
321
- x_train_batch, y_train_batch = batcher(x_train, y_train, batch_size=batch_size)
321
+ for j in range(pop_size):
322
322
 
323
323
  x_train_batch = cp.array(x_train_batch, dtype=x_train_batch.dtype, copy=False)
324
324
  y_train_batch = cp.array(y_train_batch, dtype=y_train.dtype)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 5.27
3
+ Version: 5.28a0
4
4
  Summary: PyereualJetwork is a GPU-accelerated machine learning library in Python for professionals and researchers. It features PLAN, MLP, Deep Learning training, and ENE (Eugenic NeuroEvolution) for genetic optimization, applicable to genetic algorithms or Reinforcement Learning (RL). The library includes data pre-processing, visualizations, model saving/loading, prediction, evaluation, training, and detailed or simplified memory management.
5
5
  Author: Hasan Can Beydili
6
6
  Author-email: tchasancan@gmail.com
@@ -1,4 +1,4 @@
1
- pyerualjetwork/__init__.py,sha256=OMPuF8AehsQx7gfqt_S76mnrYyodeCBdRAar-AJRUxk,2733
1
+ pyerualjetwork/__init__.py,sha256=wDb7sd2nFRlS8ty2Zrkq7FZd51YvCHbKHfMCibTrssA,2735
2
2
  pyerualjetwork/activation_functions_cpu.py,sha256=axsVRSjw0GuRB709aBwyaNDgAi2vJBIqmJjTmcsCBBY,5743
3
3
  pyerualjetwork/activation_functions_cuda.py,sha256=mNlecgmVX9G0_2yQ2_c6XQoMfvcdWIt9b1RUTdoLNBg,5809
4
4
  pyerualjetwork/data_operations_cpu.py,sha256=HemqiYfSdlQKTTYNzpCh_9lTtS3AimMI4DvqJBAGjGw,16186
@@ -15,12 +15,12 @@ pyerualjetwork/metrics_cpu.py,sha256=vbfMwS0ay2heMSa0GNo-ydLjQ8cfexbLwaREp4FKAtY
15
15
  pyerualjetwork/metrics_cuda.py,sha256=PWyJyexeqlPKb09LAcF55JvhZVeXLCu3P_siYq5m2gg,5065
16
16
  pyerualjetwork/model_operations_cpu.py,sha256=Y0uPkLVbdodP7lC-fOPdja3RWi2J9z2rwWIS2pxzotU,20523
17
17
  pyerualjetwork/model_operations_cuda.py,sha256=B6vNYmqvrEJ3ZMGE1RWeJYn3V-JCsXhCHvS-aX4bWuU,21254
18
- pyerualjetwork/neu_cpu.py,sha256=Mi-KcFVeoemK9I32H5Ov2oDPSwZG98dpQM3xaMuDsKE,31436
19
- pyerualjetwork/neu_cuda.py,sha256=WBNZwwTEF7r6xIGti-8SFmTTTod_z7uP7NDgRhHgdHg,32573
18
+ pyerualjetwork/neu_cpu.py,sha256=h97WXTdj0Sizgo-imcyeStxW4dixUITwrla34bd8EWQ,31432
19
+ pyerualjetwork/neu_cuda.py,sha256=NnQEnMRz5m3wPlotNKy6v4BfNkuzyaK6ZlAWcjBdZ8Y,32569
20
20
  pyerualjetwork/ui.py,sha256=JBTFYz5R24XwNKhA3GSW-oYAoiIBxAE3kFGXkvm5gqw,656
21
21
  pyerualjetwork/visualizations_cpu.py,sha256=StyD1Hl1Gt55EMqR6tO3yVJZdPyGkOgCnQ75Zn8K6J8,28252
22
22
  pyerualjetwork/visualizations_cuda.py,sha256=7lYrkOdrjwQGB3T4k_vI8UDxsm_TRjzaSSg9GhlNczs,28667
23
- pyerualjetwork-5.27.dist-info/METADATA,sha256=eNL98od3NdBtaPKp2mQm1zir5FMfZJEtJE14kCVMbfM,8133
24
- pyerualjetwork-5.27.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
25
- pyerualjetwork-5.27.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
26
- pyerualjetwork-5.27.dist-info/RECORD,,
23
+ pyerualjetwork-5.28a0.dist-info/METADATA,sha256=Afcltg5ySVvZ_5LLsNKeUYk8xXQTRpbFqih9kNrut5w,8135
24
+ pyerualjetwork-5.28a0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
25
+ pyerualjetwork-5.28a0.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
26
+ pyerualjetwork-5.28a0.dist-info/RECORD,,