eispy2d 1.0.0__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.
- eispy2d-1.0.0/.gitignore +148 -0
- eispy2d-1.0.0/CITATION.bib +10 -0
- eispy2d-1.0.0/LICENSE +674 -0
- eispy2d-1.0.0/PKG-INFO +83 -0
- eispy2d-1.0.0/README.md +56 -0
- eispy2d-1.0.0/demo/example_benchmark.ipynb +302 -0
- eispy2d-1.0.0/demo/example_benchmark.py +142 -0
- eispy2d-1.0.0/demo/example_case_study.ipynb +228 -0
- eispy2d-1.0.0/demo/example_case_study.py +169 -0
- eispy2d-1.0.0/demo/example_manual_definition.ipynb +472 -0
- eispy2d-1.0.0/lib/README.md +35 -0
- eispy2d-1.0.0/lib/analytical.py +455 -0
- eispy2d-1.0.0/lib/backprop.py +323 -0
- eispy2d-1.0.0/lib/benchmark.py +4715 -0
- eispy2d-1.0.0/lib/bim.py +477 -0
- eispy2d-1.0.0/lib/bornapprox.py +495 -0
- eispy2d-1.0.0/lib/casestudy.py +1901 -0
- eispy2d-1.0.0/lib/cgm.py +640 -0
- eispy2d-1.0.0/lib/collocation.py +706 -0
- eispy2d-1.0.0/lib/configuration.py +978 -0
- eispy2d-1.0.0/lib/csi.py +1112 -0
- eispy2d-1.0.0/lib/dbim.py +636 -0
- eispy2d-1.0.0/lib/deterministic.py +431 -0
- eispy2d-1.0.0/lib/discretization.py +813 -0
- eispy2d-1.0.0/lib/draw.py +2186 -0
- eispy2d-1.0.0/lib/ecsi.py +1053 -0
- eispy2d-1.0.0/lib/error.py +157 -0
- eispy2d-1.0.0/lib/evoalglib/boundary.py +41 -0
- eispy2d-1.0.0/lib/evoalglib/crossover.py +245 -0
- eispy2d-1.0.0/lib/evoalglib/de.py +123 -0
- eispy2d-1.0.0/lib/evoalglib/ga.py +67 -0
- eispy2d-1.0.0/lib/evoalglib/initialization.py +61 -0
- eispy2d-1.0.0/lib/evoalglib/mechanism.py +41 -0
- eispy2d-1.0.0/lib/evoalglib/mutation.py +115 -0
- eispy2d-1.0.0/lib/evoalglib/objectivefunction.py +111 -0
- eispy2d-1.0.0/lib/evoalglib/pso.py +78 -0
- eispy2d-1.0.0/lib/evoalglib/representation.py +208 -0
- eispy2d-1.0.0/lib/evoalglib/selection.py +140 -0
- eispy2d-1.0.0/lib/evolutionary.py +236 -0
- eispy2d-1.0.0/lib/experiment.py +417 -0
- eispy2d-1.0.0/lib/fftproduct.py +63 -0
- eispy2d-1.0.0/lib/forward.py +150 -0
- eispy2d-1.0.0/lib/inputdata.py +671 -0
- eispy2d-1.0.0/lib/inverse.py +137 -0
- eispy2d-1.0.0/lib/lsm.py +265 -0
- eispy2d-1.0.0/lib/mom_cg_fft.py +530 -0
- eispy2d-1.0.0/lib/mrcsi.py +456 -0
- eispy2d-1.0.0/lib/music.py +134 -0
- eispy2d-1.0.0/lib/osm.py +175 -0
- eispy2d-1.0.0/lib/regularization.py +469 -0
- eispy2d-1.0.0/lib/result.py +3476 -0
- eispy2d-1.0.0/lib/richmond.py +324 -0
- eispy2d-1.0.0/lib/som.py +479 -0
- eispy2d-1.0.0/lib/statisticstutils.py +1357 -0
- eispy2d-1.0.0/lib/stochastic.py +191 -0
- eispy2d-1.0.0/lib/stopcriteria.py +135 -0
- eispy2d-1.0.0/lib/testset.py +1008 -0
- eispy2d-1.0.0/pyproject.toml +40 -0
- eispy2d-1.0.0/requirements.txt +9 -0
eispy2d-1.0.0/.gitignore
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
# lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
pip-wheel-metadata/
|
|
24
|
+
share/python-wheels/
|
|
25
|
+
*.egg-info/
|
|
26
|
+
.installed.cfg
|
|
27
|
+
*.egg
|
|
28
|
+
MANIFEST
|
|
29
|
+
|
|
30
|
+
# PyInstaller
|
|
31
|
+
# Usually these files are written by a python script from a template
|
|
32
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
33
|
+
*.manifest
|
|
34
|
+
*.spec
|
|
35
|
+
|
|
36
|
+
# Installer logs
|
|
37
|
+
pip-log.txt
|
|
38
|
+
pip-delete-this-directory.txt
|
|
39
|
+
|
|
40
|
+
# Unit test / coverage reports
|
|
41
|
+
htmlcov/
|
|
42
|
+
.tox/
|
|
43
|
+
.nox/
|
|
44
|
+
.coverage
|
|
45
|
+
.coverage.*
|
|
46
|
+
.cache
|
|
47
|
+
nosetests.xml
|
|
48
|
+
coverage.xml
|
|
49
|
+
*.cover
|
|
50
|
+
*.py,cover
|
|
51
|
+
.hypothesis/
|
|
52
|
+
.pytest_cache/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
target/
|
|
76
|
+
|
|
77
|
+
# Jupyter Notebook
|
|
78
|
+
.ipynb_checkpoints
|
|
79
|
+
|
|
80
|
+
# IPython
|
|
81
|
+
profile_default/
|
|
82
|
+
ipython_config.py
|
|
83
|
+
|
|
84
|
+
# pyenv
|
|
85
|
+
.python-version
|
|
86
|
+
|
|
87
|
+
# pipenv
|
|
88
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
89
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
90
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
91
|
+
# install all needed dependencies.
|
|
92
|
+
#Pipfile.lock
|
|
93
|
+
|
|
94
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
95
|
+
__pypackages__/
|
|
96
|
+
|
|
97
|
+
# Celery stuff
|
|
98
|
+
celerybeat-schedule
|
|
99
|
+
celerybeat.pid
|
|
100
|
+
|
|
101
|
+
# SageMath parsed files
|
|
102
|
+
*.sage.py
|
|
103
|
+
|
|
104
|
+
# Environments
|
|
105
|
+
.env
|
|
106
|
+
.venv
|
|
107
|
+
env/
|
|
108
|
+
venv/
|
|
109
|
+
ENV/
|
|
110
|
+
env.bak/
|
|
111
|
+
venv.bak/
|
|
112
|
+
|
|
113
|
+
# Spyder project settings
|
|
114
|
+
.spyderproject
|
|
115
|
+
.spyproject
|
|
116
|
+
|
|
117
|
+
# Rope project settings
|
|
118
|
+
.ropeproject
|
|
119
|
+
|
|
120
|
+
# mkdocs documentation
|
|
121
|
+
/site
|
|
122
|
+
|
|
123
|
+
# mypy
|
|
124
|
+
.mypy_cache/
|
|
125
|
+
.dmypy.json
|
|
126
|
+
dmypy.json
|
|
127
|
+
|
|
128
|
+
# Pyre type checker
|
|
129
|
+
.pyre/
|
|
130
|
+
|
|
131
|
+
# macOS
|
|
132
|
+
.DS_Store
|
|
133
|
+
|
|
134
|
+
# Windows
|
|
135
|
+
Thumbs.db
|
|
136
|
+
ehthumbs.db
|
|
137
|
+
Desktop.ini
|
|
138
|
+
|
|
139
|
+
# IDE
|
|
140
|
+
.vscode/
|
|
141
|
+
.idea/
|
|
142
|
+
*.swp
|
|
143
|
+
*.swo
|
|
144
|
+
*~
|
|
145
|
+
|
|
146
|
+
# Custom project files
|
|
147
|
+
config.ini
|
|
148
|
+
secrets.json
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
@ARTICLE{11015426,
|
|
2
|
+
author={Costa Batista, André and Adriano, Ricardo and Batista, Lucas S.},
|
|
3
|
+
journal={IEEE Access},
|
|
4
|
+
title={EISPY2D: An Open-Source Python Library for the Development and Comparison of Algorithms in Two-Dimensional Electromagnetic Inverse Scattering Problems},
|
|
5
|
+
year={2025},
|
|
6
|
+
volume={13},
|
|
7
|
+
number={},
|
|
8
|
+
pages={92134-92154},
|
|
9
|
+
keywords={Libraries;Electromagnetic scattering;Imaging;Image reconstruction;Electromagnetics;Microwave theory and techniques;Microwave integrated circuits;Microwave imaging;Microwave FET integrated circuits;Inverse problems;Comparison of algorithms;electromagnetic inverse scattering problem;microwave imaging;open-source library;optimization},
|
|
10
|
+
doi={10.1109/ACCESS.2025.3573679}}
|