pyerualjetwork 1.1.3__tar.gz → 1.1.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.1.3 → pyerualjetwork-1.1.5}/PKG-INFO +1 -1
- pyerualjetwork-1.1.5/plan/__init__.py +5 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.5}/pyerualjetwork.egg-info/PKG-INFO +1 -1
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.5}/pyerualjetwork.egg-info/SOURCES.txt +2 -2
- pyerualjetwork-1.1.5/pyerualjetwork.egg-info/top_level.txt +1 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.5}/setup.py +1 -1
- pyerualjetwork-1.1.3/DPNN/__init__.py +0 -1
- pyerualjetwork-1.1.3/pyerualjetwork.egg-info/top_level.txt +0 -1
- /pyerualjetwork-1.1.3/DPNN/DPNN.py → /pyerualjetwork-1.1.5/plan/plan.py +0 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.5}/pyerualjetwork.egg-info/dependency_links.txt +0 -0
- {pyerualjetwork-1.1.3 → pyerualjetwork-1.1.5}/setup.cfg +0 -0
@@ -0,0 +1,5 @@
|
|
1
|
+
# pyerualjetwork/DPNN/__init__.py
|
2
|
+
|
3
|
+
# Bu dosya, plan modülünün ana giriş noktasıdır.
|
4
|
+
|
5
|
+
from .plan import AutoBalancer, Normalization, Softmax, Sigmoid, Relu, SynapticPruning, SynapticDividing, WeightIdentification, Fex, Cat, TrainDPNN, TestDPNN, SaveDPNN, LoadDPNN, PredictFromDiscDPNN, PredictFromRamDPNN
|
@@ -0,0 +1 @@
|
|
1
|
+
plan
|
@@ -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.5",
|
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
|
@@ -1 +0,0 @@
|
|
1
|
-
DPNN
|
File without changes
|
File without changes
|
File without changes
|