likelihood 1.2.14__tar.gz → 1.2.15__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.
- {likelihood-1.2.14 → likelihood-1.2.15}/PKG-INFO +3 -1
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/models/deep/autoencoders.py +0 -6
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood.egg-info/PKG-INFO +3 -1
- {likelihood-1.2.14 → likelihood-1.2.15}/setup.py +2 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/LICENSE +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/README.md +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/__init__.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/graph/__init__.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/graph/graph.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/main.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/models/__init__.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/models/deep/__init__.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/models/regression.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/models/simulation.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/models/utils.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/tools/__init__.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/tools/numeric_tools.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood/tools/tools.py +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood.egg-info/SOURCES.txt +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood.egg-info/dependency_links.txt +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood.egg-info/requires.txt +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/likelihood.egg-info/top_level.txt +0 -0
- {likelihood-1.2.14 → likelihood-1.2.15}/setup.cfg +0 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: likelihood
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.15
|
|
4
4
|
Summary: A package that performs the maximum likelihood algorithm.
|
|
5
5
|
Home-page: https://github.com/jzsmoreno/likelihood/
|
|
6
6
|
Author: J. A. Moreno-Guerra
|
|
7
7
|
Author-email: jzs.gm27@gmail.com
|
|
8
|
+
Maintainer: Jafet Castañeda
|
|
9
|
+
Maintainer-email: jafetcc17@gmail.com
|
|
8
10
|
Classifier: Programming Language :: Python :: 3
|
|
9
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -39,10 +39,6 @@ class AutoClassifier(Model):
|
|
|
39
39
|
The number of neurons in each hidden layer.
|
|
40
40
|
activation : `str`
|
|
41
41
|
The type of activation function to use for the neural network layers.
|
|
42
|
-
|
|
43
|
-
Returns
|
|
44
|
-
-------
|
|
45
|
-
None
|
|
46
42
|
"""
|
|
47
43
|
super(AutoClassifier, self).__init__()
|
|
48
44
|
self.units = units
|
|
@@ -210,8 +206,6 @@ def setup_model(
|
|
|
210
206
|
X = X.to_numpy()
|
|
211
207
|
X = np.asarray(X).astype(np.float32)
|
|
212
208
|
|
|
213
|
-
y = pd.DataFrame(y, columns=["class_0", "class_1"])
|
|
214
|
-
y = y.to_numpy()
|
|
215
209
|
y = np.asarray(y).astype(np.float32)
|
|
216
210
|
|
|
217
211
|
input_shape = X.shape[1]
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: likelihood
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.15
|
|
4
4
|
Summary: A package that performs the maximum likelihood algorithm.
|
|
5
5
|
Home-page: https://github.com/jzsmoreno/likelihood/
|
|
6
6
|
Author: J. A. Moreno-Guerra
|
|
7
7
|
Author-email: jzs.gm27@gmail.com
|
|
8
|
+
Maintainer: Jafet Castañeda
|
|
9
|
+
Maintainer-email: jafetcc17@gmail.com
|
|
8
10
|
Classifier: Programming Language :: Python :: 3
|
|
9
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -21,6 +21,8 @@ setuptools.setup(
|
|
|
21
21
|
version=about["__version__"],
|
|
22
22
|
author="J. A. Moreno-Guerra",
|
|
23
23
|
author_email="jzs.gm27@gmail.com",
|
|
24
|
+
maintainer="Jafet Castañeda",
|
|
25
|
+
maintainer_email="jafetcc17@gmail.com",
|
|
24
26
|
description="A package that performs the maximum likelihood algorithm.",
|
|
25
27
|
py_modules=["likelihood"],
|
|
26
28
|
long_description=long_description,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|