pyerualjetwork 1.3.4__py3-none-any.whl → 1.3.5__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.
- plan/plan.py +14 -7
- {pyerualjetwork-1.3.4.dist-info → pyerualjetwork-1.3.5.dist-info}/METADATA +1 -1
- pyerualjetwork-1.3.5.dist-info/RECORD +6 -0
- pyerualjetwork-1.3.4.dist-info/RECORD +0 -6
- {pyerualjetwork-1.3.4.dist-info → pyerualjetwork-1.3.5.dist-info}/WHEEL +0 -0
- {pyerualjetwork-1.3.4.dist-info → pyerualjetwork-1.3.5.dist-info}/top_level.txt +0 -0
plan/plan.py
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
"""
|
3
|
+
Created on Thu May 30 05:00:38 2024
|
4
|
+
|
5
|
+
@author: hasan
|
6
|
+
"""
|
7
|
+
|
1
8
|
import numpy as np
|
2
9
|
import time
|
3
10
|
from colorama import Fore,Style
|
@@ -12,13 +19,13 @@ def TrainPLAN(
|
|
12
19
|
x_train: List[Union[int, float]],
|
13
20
|
y_train: List[Union[int, float, str]], # At least two.. and one hot encoded
|
14
21
|
class_count: int,
|
15
|
-
layers
|
16
|
-
neurons
|
17
|
-
membran_thresholds
|
18
|
-
membran_potentials
|
19
|
-
normalizations
|
20
|
-
activations
|
21
|
-
visualize
|
22
|
+
layers = ['fex','cat'],
|
23
|
+
neurons = [],
|
24
|
+
membran_thresholds = ['<','=='],
|
25
|
+
membran_potentials = [0.01,0],
|
26
|
+
normalizations = ['y','y'],
|
27
|
+
activations = ['none','none'],
|
28
|
+
visualize = 'n'
|
22
29
|
) -> str:
|
23
30
|
|
24
31
|
infoPLAN = """
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.5
|
4
4
|
Summary: Advanced python deep learning library. New Features: 'SyntheticAugmentation' function added for unbalanced datasets. Changes for variable names to snake_case (Function names are still PascalCase). (Documentation in desc. Examples in GİTHUB: https://github.com/HCB06/PyerualJetwork)
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
@@ -0,0 +1,6 @@
|
|
1
|
+
plan/__init__.py,sha256=LQbg-AnTUz7KA1E77-mg7X-zRM-7IiK7c3zK-j063rc,375
|
2
|
+
plan/plan.py,sha256=GxjRfztryI-GN_1p0dIwONgwMZW40tkslVY5N6BfjBw,44286
|
3
|
+
pyerualjetwork-1.3.5.dist-info/METADATA,sha256=Go_Ix7kNK67fvUKKmWYZdnDW_qBl-wAgAcuCaCxbxTI,504
|
4
|
+
pyerualjetwork-1.3.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
5
|
+
pyerualjetwork-1.3.5.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
+
pyerualjetwork-1.3.5.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
plan/__init__.py,sha256=LQbg-AnTUz7KA1E77-mg7X-zRM-7IiK7c3zK-j063rc,375
|
2
|
-
plan/plan.py,sha256=XIFGPk2NFYQcuKcPik-FMe-i-w3ezn60QFfWSkjXUU0,44211
|
3
|
-
pyerualjetwork-1.3.4.dist-info/METADATA,sha256=29bcIQ5o4xWaTgd5zNGmBAw1VMVsuUodcD34LyS7Mdw,504
|
4
|
-
pyerualjetwork-1.3.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
5
|
-
pyerualjetwork-1.3.4.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
-
pyerualjetwork-1.3.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|