pyerualjetwork 1.1.3__tar.gz → 1.1.4__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.1.4/DPNN/__init__.py +20 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/PKG-INFO +1 -1
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/pyerualjetwork.egg-info/PKG-INFO +1 -1
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/setup.py +1 -1
- pyerualjetwork-1.1.3/DPNN/__init__.py +0 -1
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/DPNN/DPNN.py +0 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/pyerualjetwork.egg-info/SOURCES.txt +0 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/pyerualjetwork.egg-info/dependency_links.txt +0 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/pyerualjetwork.egg-info/top_level.txt +0 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.4}/setup.cfg +0 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
# pyerualjetwork/DPNN/__init__.py
|
2
|
+
|
3
|
+
# Bu dosya, DPNN modülünün ana giriş noktasıdır.
|
4
|
+
|
5
|
+
from .AutoBalancer import AutoBalancer
|
6
|
+
from .Normalization import Normalization
|
7
|
+
from .Softmax import Softmax
|
8
|
+
from .Sigmoid import Sigmoid
|
9
|
+
from .Relu import Relu
|
10
|
+
from .SynapticPruning import SynapticPruning
|
11
|
+
from .SynapticDividing import SynapticDividing
|
12
|
+
from .WeightIdentification import WeightIdentification
|
13
|
+
from .Fex import Fex
|
14
|
+
from .Cat import Cat
|
15
|
+
from .TrainDPNN import TrainDPNN
|
16
|
+
from .TestDPNN import TestDPNN
|
17
|
+
from .SaveDPNN import SaveDPNN
|
18
|
+
from .LoadDPNN import LoadDPNN
|
19
|
+
from .PredictFromDiscDPNN import PredictFromDiscDPNN
|
20
|
+
from .PredictFromRamDPNN import PredictFromRamDPNN
|
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|
5
5
|
setup(
|
6
6
|
|
7
7
|
name = "pyerualjetwork",
|
8
|
-
version = "1.1.
|
8
|
+
version = "1.1.4",
|
9
9
|
author = "Hasan Can Beydili",
|
10
10
|
author_email = "tchasancan@gmail.com",
|
11
11
|
description= "Advanced python deep learning library.(More document coming soon..)",
|
@@ -1 +0,0 @@
|
|
1
|
-
from DPNN import AutoBalancer ,Normalization,Softmax,Sigmoid,Relu,SynapticPruning,SynapticDividing,WeightIdentification,Fex,Cat,TrainDPNN,TestDPNN,SaveDPNN,LoadDPNN,PredictFromDiscDPNN,PredictFromRamDPNN
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|