pyerualjetwork 1.3.4__tar.gz → 1.3.5__tar.gz
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-1.3.4 → pyerualjetwork-1.3.5}/PKG-INFO +1 -1
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/plan/plan.py +14 -7
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/pyerualjetwork.egg-info/PKG-INFO +1 -1
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/setup.py +1 -1
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/plan/__init__.py +0 -0
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/pyerualjetwork.egg-info/SOURCES.txt +0 -0
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/pyerualjetwork.egg-info/dependency_links.txt +0 -0
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/pyerualjetwork.egg-info/top_level.txt +0 -0
- {pyerualjetwork-1.3.4 → pyerualjetwork-1.3.5}/setup.cfg +0 -0
@@ -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
|
@@ -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
|
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|
5
5
|
setup(
|
6
6
|
|
7
7
|
name = "pyerualjetwork",
|
8
|
-
version = "1.3.
|
8
|
+
version = "1.3.5",
|
9
9
|
author = "Hasan Can Beydili",
|
10
10
|
author_email = "tchasancan@gmail.com",
|
11
11
|
description= "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)",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|