metacountregressor 0.1.101__tar.gz → 0.1.111__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/PKG-INFO +17 -3
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/README.rst +25 -4
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/PKG-INFO +17 -3
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/LICENSE.txt +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/__init__.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/_device_cust.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/app_main.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/data_split_helper.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/halton.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/helperprocess.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/main.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/main_old.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/metaheuristics.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/pareto_file.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/pareto_logger__plot.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/setup.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/single_objective_finder.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/solution.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/test_generated_paper2.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/SOURCES.txt +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/dependency_links.txt +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/not-zip-safe +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/requires.txt +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/top_level.txt +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/setup.cfg +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/setup.py +0 -0
- {metacountregressor-0.1.101 → metacountregressor-0.1.111}/tests/test.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: metacountregressor
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.111
|
4
4
|
Summary: Extensions for a Python package for estimation of count models.
|
5
5
|
Home-page: https://github.com/zahern/CountDataEstimation
|
6
6
|
Author: Zeke Ahern
|
@@ -23,10 +23,24 @@ Requires-Dist: requests
|
|
23
23
|
|
24
24
|
The tutorial provides more extensive examples on how to run the code and perform experiments. Further documentation is currently in development.
|
25
25
|
|
26
|
-
|
26
|
+
# For an Application Setup Download the following GUI
|
27
|
+
[Download Application](https://github.com/zahern/MetaCount/tree/master/metacountregressor/application_gui/dist/meta_app)
|
28
|
+
|
29
|
+
The application involves setting up a problem instance to run the models.
|
30
|
+
|
31
|
+
### Entire [Git Repository](https://github.com/zahern/MetaCount.git) is available to clone.
|
32
|
+
#### Steps
|
33
|
+
1. Clone Project
|
34
|
+
2. Navigate to "metacountregressor/application_gui/dist/meta_app"
|
35
|
+
3. Run meta_app.exe
|
36
|
+
4. Navigate to metacountregressor/app_main.py
|
37
|
+
5. Run app_main.py
|
38
|
+
|
39
|
+
|
40
|
+
## Setup For Python Package Approach
|
27
41
|
The Below code demonstrates how to set up automatic optimization assisted by the harmony search algorithm. References to the Differential Evolution and Simulated Annealing has been mentioned (change accordingly)
|
28
42
|
|
29
|
-
##
|
43
|
+
## Install: Requires Python 3.10
|
30
44
|
|
31
45
|
Install `metacountregressor` using pip as follows:
|
32
46
|
|
@@ -14,16 +14,37 @@ Notebook <https://github.com/zahern/CountDataEstimation/blob/main/Tutorial.ipynb
|
|
14
14
|
The tutorial provides more extensive examples on how to run the code and
|
15
15
|
perform experiments. Further documentation is currently in development.
|
16
16
|
|
17
|
-
|
18
|
-
|
17
|
+
For an Application Setup Download the following GUI
|
18
|
+
===================================================
|
19
|
+
|
20
|
+
`Download
|
21
|
+
Application <https://github.com/zahern/MetaCount/tree/master/metacountregressor/application_gui/dist/meta_app>`__
|
22
|
+
|
23
|
+
The application involves setting up a problem instance to run the
|
24
|
+
models.
|
25
|
+
|
26
|
+
Entire `Git Repository <https://github.com/zahern/MetaCount.git>`__ is available to clone.
|
27
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
28
|
+
|
29
|
+
Steps
|
30
|
+
^^^^^
|
31
|
+
|
32
|
+
1. Clone Project
|
33
|
+
2. Navigate to �metacountregressor/application_gui/dist/meta_app�
|
34
|
+
3. Run meta_app.exe
|
35
|
+
4. Navigate to metacountregressor/app_main.py
|
36
|
+
5. Run app_main.py
|
37
|
+
|
38
|
+
Setup For Python Package Approach
|
39
|
+
---------------------------------
|
19
40
|
|
20
41
|
The Below code demonstrates how to set up automatic optimization
|
21
42
|
assisted by the harmony search algorithm. References to the Differential
|
22
43
|
Evolution and Simulated Annealing has been mentioned (change
|
23
44
|
accordingly)
|
24
45
|
|
25
|
-
|
26
|
-
|
46
|
+
Install: Requires Python 3.10
|
47
|
+
-----------------------------
|
27
48
|
|
28
49
|
Install ``metacountregressor`` using pip as follows:
|
29
50
|
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: metacountregressor
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.111
|
4
4
|
Summary: Extensions for a Python package for estimation of count models.
|
5
5
|
Home-page: https://github.com/zahern/CountDataEstimation
|
6
6
|
Author: Zeke Ahern
|
@@ -23,10 +23,24 @@ Requires-Dist: requests
|
|
23
23
|
|
24
24
|
The tutorial provides more extensive examples on how to run the code and perform experiments. Further documentation is currently in development.
|
25
25
|
|
26
|
-
|
26
|
+
# For an Application Setup Download the following GUI
|
27
|
+
[Download Application](https://github.com/zahern/MetaCount/tree/master/metacountregressor/application_gui/dist/meta_app)
|
28
|
+
|
29
|
+
The application involves setting up a problem instance to run the models.
|
30
|
+
|
31
|
+
### Entire [Git Repository](https://github.com/zahern/MetaCount.git) is available to clone.
|
32
|
+
#### Steps
|
33
|
+
1. Clone Project
|
34
|
+
2. Navigate to "metacountregressor/application_gui/dist/meta_app"
|
35
|
+
3. Run meta_app.exe
|
36
|
+
4. Navigate to metacountregressor/app_main.py
|
37
|
+
5. Run app_main.py
|
38
|
+
|
39
|
+
|
40
|
+
## Setup For Python Package Approach
|
27
41
|
The Below code demonstrates how to set up automatic optimization assisted by the harmony search algorithm. References to the Differential Evolution and Simulated Annealing has been mentioned (change accordingly)
|
28
42
|
|
29
|
-
##
|
43
|
+
## Install: Requires Python 3.10
|
30
44
|
|
31
45
|
Install `metacountregressor` using pip as follows:
|
32
46
|
|
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/_device_cust.py
RENAMED
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/data_split_helper.py
RENAMED
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/helperprocess.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/metaheuristics.py
RENAMED
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor/pareto_logger__plot.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/not-zip-safe
RENAMED
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/requires.txt
RENAMED
File without changes
|
{metacountregressor-0.1.101 → metacountregressor-0.1.111}/metacountregressor.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|