Skip to content

Commit 3d89a1c

Browse files
author
Maksim Ekin Eren
committed
first commit
0 parents  commit 3d89a1c

File tree

150 files changed

+22973
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+22973
-0
lines changed

Diff for: .github/workflows/ci_tests.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI Tests
2+
on:
3+
# Triggers the workflow on push or pull request events
4+
pull_request:
5+
push:
6+
# Allows you to run this workflow manually from the Actions tab
7+
workflow_dispatch:
8+
9+
jobs:
10+
test:
11+
name: Tests Linux
12+
runs-on: "ubuntu-latest"
13+
defaults:
14+
run:
15+
shell: bash -l {0}
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: conda-incubator/setup-miniconda@v2
19+
with:
20+
activate-environment: anaconda-client-env
21+
python-version: 3.8.5
22+
auto-activate-base: True
23+
- name: Install Dependencies and T-ELF
24+
run: |
25+
conda info
26+
conda list
27+
python setup.py install
28+
29+
- name: Run the Unittests
30+
run: |
31+
cd tests && python -m pytest *
32+

Diff for: .gitignore

+148
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
# mac
2+
results/
3+
.DS_Store
4+
# contains the data for the project
5+
# data/
6+
# swap files
7+
*.swp
8+
# matlab/output
9+
10+
# Created by https://www.toptal.com/developers/gitignore/api/python
11+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
12+
13+
### Python ###
14+
# Byte-compiled / optimized / DLL files
15+
__pycache__/
16+
*.py[cod]
17+
*$py.class
18+
19+
# C extensions
20+
*.so
21+
22+
# Distribution / packaging
23+
.Python
24+
build/
25+
develop-eggs/
26+
dist/
27+
downloads/
28+
eggs/
29+
.eggs/
30+
lib/
31+
lib64/
32+
parts/
33+
sdist/
34+
var/
35+
wheels/
36+
pip-wheel-metadata/
37+
share/python-wheels/
38+
*.egg-info/
39+
.installed.cfg
40+
*.egg
41+
MANIFEST
42+
43+
# PyInstaller
44+
# Usually these files are written by a python script from a template
45+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
46+
*.manifest
47+
*.spec
48+
49+
# Installer logs
50+
pip-log.txt
51+
pip-delete-this-directory.txt
52+
53+
# Unit test / coverage reports
54+
htmlcov/
55+
.tox/
56+
.nox/
57+
.coverage
58+
.coverage.*
59+
.cache
60+
nosetests.xml
61+
coverage.xml
62+
*.cover
63+
*.py,cover
64+
.hypothesis/
65+
.pytest_cache/
66+
67+
# Translations
68+
*.mo
69+
*.pot
70+
71+
# Django stuff:
72+
*.log
73+
local_settings.py
74+
db.sqlite3
75+
db.sqlite3-journal
76+
77+
# Flask stuff:
78+
instance/
79+
.webassets-cache
80+
81+
# Scrapy stuff:
82+
.scrapy
83+
84+
# Sphinx documentation
85+
docs/_build/
86+
87+
# PyBuilder
88+
target/
89+
90+
# Jupyter Notebook
91+
.ipynb_checkpoints
92+
93+
# IPython
94+
profile_default/
95+
ipython_config.py
96+
97+
# pyenv
98+
.python-version
99+
100+
# pipenv
101+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
103+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
104+
# install all needed dependencies.
105+
#Pipfile.lock
106+
107+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
108+
__pypackages__/
109+
110+
# Celery stuff
111+
celerybeat-schedule
112+
celerybeat.pid
113+
114+
# SageMath parsed files
115+
*.sage.py
116+
117+
# Environments
118+
.env
119+
.venv
120+
env/
121+
venv/
122+
ENV/
123+
env.bak/
124+
venv.bak/
125+
126+
# Spyder project settings
127+
.spyderproject
128+
.spyproject
129+
130+
# Rope project settings
131+
.ropeproject
132+
133+
# mkdocs documentation
134+
/site
135+
136+
# mypy
137+
.mypy_cache/
138+
.dmypy.json
139+
dmypy.json
140+
141+
# Pyre type checker
142+
.pyre/
143+
144+
# pytype static type analyzer
145+
.pytype/
146+
147+
# End of https://www.toptal.com/developers/gitignore/api/python
148+

Diff for: CITATION.cff

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- family-names: Eren
5+
given-names: Maksim
6+
- family-names: Solovyev
7+
given-names: Nick
8+
- family-names: Barron
9+
given-names: Ryan
10+
- family-names: Bhattarai
11+
given-names: Manish
12+
- family-names: Boureima
13+
given-names: Ismael
14+
- family-names: Skau
15+
given-names: Erik
16+
- family-names: Rasmussen
17+
given-names: Kim
18+
- family-names: Alexandrov
19+
given-names: Boian
20+
title: "Tensor Extraction of Latent Features (T-ELF)"
21+
version: 0.0.1
22+
url: https://github.com/lanl/T-ELF
23+
doi:
24+
date-released: 2023-10-15

Diff for: LICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This program is open source under the BSD-3 License.
2+
Redistribution and use in source and binary forms, with or without modification, are permitted
3+
provided that the following conditions are met:
4+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and
5+
the following disclaimer.
6+
7+
2.Redistributions in binary form must reproduce the above copyright notice, this list of conditions
8+
and the following disclaimer in the documentation and/or other materials provided with the
9+
distribution.
10+
11+
3.Neither the name of the copyright holder nor the names of its contributors may be used to endorse
12+
or promote products derived from this software without specific prior written permission.
13+
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
15+
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
18+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Diff for: Publications.md

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
2+
<ul>
3+
4+
<li><a name="Solovyev23" href="https://arxiv.org/abs/2309.10772"><b>Interactive Distillation of Large Single-Topic Corpora of Scientific Papers.</b></a>,
5+
<br>N.&nbsp;Solovyev, R.&nbsp;Barron, M.&nbsp;Bhattarai, M.&nbsp;Eren, K.&nbsp;O.&nbsp;Rasmussen, ...
6+
<br><cite>arXiv preprint arXiv:2309.10772:</cite> 2023.</li>
7+
8+
<li><a name="Eren23a" href="https://dl.acm.org/doi/abs/10.1145/3624567"><b>Semi-supervised Classification of Malware Families Under Extreme Class Imbalance via Hierarchical Non-Negative Matrix Factorization with Automatic Model Selection.</b></a>,
9+
<br>M.&nbsp;Eren, M.&nbsp;Bhattarai, R.&nbsp;J.&nbsp;Joyce, E.&nbsp;Raff, C.&nbsp;Nicholas, B.&nbsp;S.&nbsp;Alexandrov
10+
<br><cite>ACM Transactions on Privacy and Security:</cite> 2023.</li>
11+
12+
<li><a name="Truong23" href="https://arxiv.org/abs/2309.03347"><b>Tensor Networks for Solving Realistic Time-independent Boltzmann Neutron Transport Equation.</b></a>,
13+
<br>D.&nbsp;P.&nbsp;Truong, M.&nbsp;I.&nbsp;Ortega, I.&nbsp;Boureima, G.&nbsp;Manzini, K.&nbsp;Ø.&nbsp;Rasmussen, ...
14+
<br><cite>arXiv preprint arXiv:2309.03347:</cite> 2023.</li>
15+
16+
<li><a name="Alexandrov23a" href="https://patents.google.com/patent/US10776718B2/en"><b>Source identification by non-negative matrix factorization combined with semi-supervised clustering.</b></a>,
17+
<br>B.&nbsp;S.&nbsp;Alexandrov, L.&nbsp;B.&nbsp;Alexandrov, F.&nbsp;L.&nbsp;Iliev, V.&nbsp;G.&nbsp;Stanev, V.&nbsp;V.&nbsp;Vesselinov
18+
<br><cite>US Patent 11,748,657:</cite> 2023.</li>
19+
20+
<li><a name="Bhattarai23a" href="https://arxiv.org/abs/2309.01077"><b>Robust Adversarial Defense by Tensor Factorization.</b></a>,
21+
<br>M.&nbsp;Bhattarai, M.&nbsp;C.&nbsp;Kaymak, R.&nbsp;Barron, B.&nbsp;Nebgen, K.&nbsp;Rasmussen, ...
22+
<br><cite>arXiv preprint arXiv:2309.01077:</cite> 2023.</li>
23+
24+
<li><a name="Manzini23" href="https://www.sciencedirect.com/science/article/pii/S0378475423001313"><b>The tensor-train mimetic finite difference method for three-dimensional Maxwell’s wave propagation equations.</b></a>,
25+
<br>G.&nbsp;Manzini, P.&nbsp;M.&nbsp;D.&nbsp;Truong, R.&nbsp;Vuchkov, B.&nbsp;Alexandrov
26+
<br><cite>Mathematics and Computers in Simulation 210:</cite> 2023.</li>
27+
28+
<li><a name="Eren22" href="https://ieeexplore.ieee.org/abstract/document/10069271"><b>One-Shot Federated Group Collaborative Filtering.</b></a>,
29+
<br>M.&nbsp;E.&nbsp;Eren, M.&nbsp;Bhattarai, N.&nbsp;Solovyev, L.&nbsp;E.&nbsp;Richards, R.&nbsp;Yus, C.&nbsp;Nicholas, ...
30+
<br><cite>IEEE International Conference on Machine Learning and Applications:</cite> 2022.</li>
31+
32+
<li><a name="Alexandrov22" href="https://onlinelibrary.wiley.com/doi/full/10.1002/nla.2443"><b>Nonnegative canonical tensor decomposition with linear constraints: nnCANDELINC.</b></a>,
33+
<br>B.&nbsp;Alexandrov, D.&nbsp;F.&nbsp;DeSantis, G.&nbsp;Manzini, E.&nbsp;W.&nbsp;Skau
34+
<br><cite>Numerical Linear Algebra with Applications 29 (6):</cite> 2022.</li>
35+
36+
<li><a name="Skau22" href="https://arxiv.org/abs/2210.01060"><b>Process Modeling, Hidden Markov Models, and Non-negative Tensor Factorization with Model Selection.</b></a>,
37+
<br>E.&nbsp;Skau, A.&nbsp;Hollis, S.&nbsp;Eidenbenz, K.&nbsp;Rasmussen, B.&nbsp;Alexandrov
38+
<br><cite>arXiv preprint arXiv:2210.01060:</cite> 2022.</li>
39+
40+
<li><a name="Eren22a" href="https://dl.acm.org/doi/abs/10.1145/3558100.3563844"><b>Senmfk-split: Large corpora topic modeling by semantic non-negative matrix factorization with automatic model selection.</b></a>,
41+
<br>M.&nbsp;E.&nbsp;Eren, N.&nbsp;Solovyev, M.&nbsp;Bhattarai, K.&nbsp;Ø.&nbsp;Rasmussen, C.&nbsp;Nicholas, ...
42+
<br><cite>Proceedings of the 22nd ACM Symposium on Document Engineering:</cite> 2022.</li>
43+
44+
<li><a name="Eren22b" href="https://arxiv.org/abs/2205.02359"><b>Fedsplit: One-shot federated recommendation system based on non-negative joint matrix factorization and knowledge distillation.</b></a>,
45+
<br>M.&nbsp;E.&nbsp;Eren, L.&nbsp;E.&nbsp;Richards, M.&nbsp;Bhattarai, R.&nbsp;Yus, C.&nbsp;Nicholas, B.&nbsp;S.&nbsp;Alexandrov
46+
<br><cite>arXiv preprint arXiv:2205.02359:</cite> 2022.</li>
47+
48+
<li><a name="Eren22c" href="https://arxiv.org/abs/2208.09942"><b>SeNMFk-SPLIT: large corpora topic modeling by semantic non-negative matrix factorization with automatic model selection.</b></a>,
49+
<br>B.&nbsp;S.&nbsp;Alexandrov, M.&nbsp;E.&nbsp;Eren, N.&nbsp;Solovyev, M.&nbsp;Bhattarai, K.&nbsp;Ø.&nbsp;Rasmussen, ...
50+
<br><cite>DocEng '22: Proceedings of the 22nd ACM Symposium on Document Engineering:</cite> 2022.</li>
51+
52+
<li><a name="Alexandrov21" href="https://www.osti.gov/biblio/1826495"><b>Tensor Text-Mining Methods for Malware Identification and Detection, Malware Dynamics Characterization, and Hosts Ranking.</b></a>,
53+
<br>B.&nbsp;Alexandrov, M.&nbsp;E.&nbsp;Eren
54+
<br><cite>Los Alamos National Lab.(LANL), Los Alamos, NM (United States):</cite> 2021.</li>
55+
56+
<li><a name="Vangara21" href="https://www.osti.gov/biblio/1826495"><b>Finding the number of latent topics with semantic non-negative matrix factorization.</b></a>,
57+
<br>R.&nbsp;Vangara, M.&nbsp;Bhattarai, E.&nbsp;Skau, G.&nbsp;Chennupati, H.&nbsp;Djidjev, T.&nbsp;Tierney, ...
58+
<br><cite>IEEE Access 9:</cite> 2021.</li>
59+
60+
<li><a name="Truong21" href="https://ieeexplore.ieee.org/abstract/document/9521203"><b>Boolean matrix factorization via nonnegative auxiliary optimization.</b></a>,
61+
<br>D.&nbsp;P.&nbsp;Truong, E.&nbsp;Skau, D.&nbsp;Desantis, B.&nbsp;Alexandrov
62+
<br><cite>IEEE Access 9:</cite> 2021.</li>
63+
64+
<li><a name="Eren21" href="https://dl.acm.org/doi/10.1145/3469096.3474927"><b>COVID-19 multidimensional Kaggle literature organization.</b></a>,
65+
<br>M.&nbsp;Eren, N.&nbsp;Solovyev, C.&nbsp;Hamer, R.&nbsp;McDonald, B.S.&nbsp;Alexandrov, and C.&nbsp;Nicholas.
66+
<br><cite>Proceedings of the 21st ACM Symposium on Document Engineering, pp. 1-4.</cite> 2021.</li>
67+
68+
<li><a name="Pulido21" href="https://diglib.eg.org/bitstream/handle/10.2312/evs20211055/055-059.pdf"><b>Selection of Optimal Salient Time Steps by Non-negative Tucker Tensor Decomposition.</b></a>,
69+
<br>J.&nbsp;Pulido, J.&nbsp;Patchett, M.&nbsp;Bhattarai, B.&nbsp;Alexandrov, and J.&nbsp;Ahrens.
70+
<br><cite>EuroVis 2021. Hosted by University of Zurich in collaboration with FAU Erlangen-Nuremberg and ETH Zurich:</cite> 2021.</li>
71+
72+
<li><a name="AlexandrovPatent" href="https://patents.justia.com/patent/10776718"><b>Source identification by non-negative matrix factorization combined with semi-supervised clustering</b></a>,
73+
<br>B.S.&nbsp;Alexandrov, L.B.&nbsp;Alexandrov et al.
74+
<br><cite>US Patent S10,776,718</cite>, Sep. 2020.</li>
75+
76+
<li><a name="VangaraSemantic" href="https://ieeexplore.ieee.org/document/9356214"><b>Semantic Nonnegative Matrix Factorization with Automatic Model Determination for Topic Modeling</b></a>,
77+
<br>R.&nbsp;Vangara, E.&nbsp;Skau, G.&nbsp;Chennupati, et al.
78+
<br><cite>Proceedings of 19th IEEE International Conference on Machine Learning and Applications</cite>, December 14-17, 2020.</li>
79+
80+
<li><a name="ErenAnomalous" href="https://ieeexplore.ieee.org/abstract/document/9280524"><b>Multi-Dimensional Anomalous Entity Detection via Poisson Tensor Factorization</b></a>,
81+
<br>M.&nbsp;Eren, J.&nbsp;Moore, and B.S.&nbsp;Alexandrov.
82+
<br><cite>Proceedings of 18th IEEE International Conference on Intelligence and Security Informatics (ISI)</cite>, Nov. 9-10, 2020.</li>
83+
84+
<li><a name="NebgenNeural" href="https://iopscience.iop.org/article/10.1088/2632-2153/aba372"><b>A neural network for determination of latent dimensionality in Nonnegative Matrix Factorization</b></a>,
85+
<br>B.&nbsp;Nebgen, R.&nbsp;Vangara, M.A.&nbsp;Hombrados-Herrera, S.&nbsp;Kuksova, and B.S.&nbsp;Alexandrov.
86+
<br><cite>Journal of Machine Learning: Science and Technology</cite>, 2020.</li>
87+
88+
<li><a name="VangaraDiffusion" href="https://journals.aps.org/prresearch/abstract/10.1103/PhysRevResearch.2.023248"><b>Identification of anomalous diffusion sources by unsupervised learning</b></a>,
89+
<br>R.&nbsp;Vangara, KØ.&nbsp;Rasmussen, D.N.&nbsp;Petsev, G.&nbsp;Bel, and B.S.&nbsp;Alexandrov.
90+
<br><cite>Physical Review Research 2 (2)</cite>, 023248.</li>
91+
92+
<li><a name="PrasadTemporal" href="https://www.spiedigitallibrary.org/conference-proceedings-of-spie/11423/114230N/Weak-matching-of-temporal-interval-graphs-of-sensors-for-robust/10.1117/12.2558683.full?SSO=1"><b>Weak matching of temporal interval graphs of sensors for robust multi-modal event detection in noise</b></a>,
93+
<br>L.&nbsp;Prasad, B.S.&nbsp;Alexandrov, and B.T.&nbsp;Nebgen.
94+
<br><cite>Proceedings of Signal Processing, Sensor/Information Fusion, and Target Recognition XXIX</cite>, 2020.</li>
95+
96+
<li><a name="TruongTradeFlow" href="https://iopscience.iop.org/article/10.1088/2632-2153/aba9ee"><b>Determination of Latent Dimensionality in International Trade Flow</b></a>,
97+
<br>D.P.&nbsp;Truong, E.&nbsp;Skau, V.I.&nbsp;Valtchinov, and B.S.&nbsp;Alexandrov.
98+
<br><cite>Mach. Learn.: Sci. Technol. 1</cite>, 045017, 2020.</li>
99+
100+
<li><a name="KarimiMetabolomics" href="https://www.nature.com/articles/s41598-020-60387-7"><b>Metabolomics and the pig model reveal aberrant cardiac energy metabolism in metabolic syndrome</b></a>,
101+
<br>M.&nbsp;Karimi, V.&nbsp;Petkova, J.M.&nbsp;Asara, M.J.&nbsp;Griffin, F.W.&nbsp;Sellke, et al.
102+
<br><cite>Scientific Reports 10 (1)</cite>, 1-11, 2020.</li>
103+
104+
<li><a name="DeSantisCluster" href="https://iopscience.iop.org/article/10.1088/2632-2153/abb676"><b>Coarse-Grain Cluster Analysis of Tensors With Application to Climate Biome Identification</b></a>,
105+
<br>D.&nbsp;DeSantis, P.J.&nbsp;Wolfram, K.&nbsp;Bennett, and B.&nbsp;Alexandrov.
106+
<br><cite>Journal of Machine Learning: Science and Technology</cite>, 2020.</li>
107+
108+
<li><a name="AkhterProtein" href="https://ieeexplore.ieee.org/document/8983409"><b>Non-Negative Matrix Factorization for Selection of Near-Native Protein Tertiary Structures</b></a>,
109+
<br>N.&nbsp;Akhter, R.&nbsp;Vangara, G.&nbsp;Chennupati, B.S.&nbsp;Alexandrov, H.&nbsp;Djidjev, and A.&nbsp;Shehu.
110+
<br><cite>Proceedings of 2019 IEEE International Conference on Bioinformatics and Biomedicine (BIBM)</cite>.</li>
111+
112+
<li><a name="VesselinovReactiveMixing" href="https://www.sciencedirect.com/science/article/pii/S0021999119303833?casa_token=cfAXREvAUB8AAAAA:wJXLiCdMh2DxM7PqO5xdK-fMSqx37-prYueK_RfcqU1QyzwQUMUAlbREt7gue8Ag1Vyt0W6N64Y"><b>Unsupervised machine learning based on non-negative tensor factorization for analyzing reactive-mixing</b></a>,
113+
<br>V.V.&nbsp;Vesselinov, M.K.&nbsp;Mudunuru, S.&nbsp;Karra, D.&nbsp;O'Malley, and B.S.&nbsp;Alexandrov.
114+
<br><cite>Journal of Computational Physics 395</cite>, 85-104, 2019.</li>
115+
116+
<li><a name="LópezLipid" href="https://www.sciencedirect.com/science/article/pii/S0021999119303833?casa_token=cfAXREvAUB8AAAAA:wJXLiCdMh2DxM7PqO5xdK-fMSqx37-prYueK_RfcqU1QyzwQUMUAlbREt7gue8Ag1Vyt0W6N64Y"><b>Unsupervised Machine Learning for Analysis of Phase Separation in Ternary Lipid Mixture</b></a>,
117+
<br>C.A.&nbsp;López, V.V.&nbsp;Vesselinov, S.&nbsp;Gnanakaran, and B.S.&nbsp;Alexandrov.
118+
<br><cite>Journal of Chemical Theory and Computation 15 (11)</cite>, 6343-6357.</li>
119+
120+
<li><a name="AlexandrovMicrophase" href="https://onlinelibrary.wiley.com/doi/full/10.1002/sam.11407"><b>Nonnegative tensor decomposition with custom clustering for microphase separation of block copolymers</b></a>,
121+
<br>B.S.&nbsp;Alexandrov, V.G.&nbsp;Stanev, V.V.&nbsp;Vesselinov, and KØ.&nbsp;Rasmussen.
122+
<br><cite>Statistical Analysis and Data Mining: The ASA Data Science Journal 12</cite>, 2019.</li>
123+
124+
<li><a name="VesselinovContaminantHydrology" href="https://pubmed.ncbi.nlm.nih.gov/30528243/"><b>Nonnegative tensor factorization for contaminant source identification</b></a>,
125+
<br>V.V.&nbsp;Vesselinov, B.S.&nbsp;Alexandrov, and D.&nbsp;O'Malley.
126+
<br><cite>Journal of Contaminant Hydrology 220</cite>, 66-97.</li>
127+
128+
<li><a name="StanevMaterials" href="https://www.nature.com/articles/s41524-018-0099-2"><b>Unsupervised Phase Mapping of X-ray Diffraction Data by Nonnegative Matrix, Factorization Integrated with Custom Clustering</b></a>,
129+
<br>B.S.&nbsp;Alexandrov, V.&nbsp;Stanev, V.V.&nbsp;Vesselinov, A.G.&nbsp;Kusne, and G.&nbsp;Antoszewski.
130+
<br><cite>npj Computational Materials 4 (43)</cite>, 2018.</li>
131+
132+
<li><a name="VesselinovContaminantHydrology2" href="https://www.sciencedirect.com/science/article/pii/S0169772217301201?casa_token=Wh2EdbDh5wkAAAAA:EQnFMXrypgLiEWw2VEIGnGwPeFOuJ5wU6bovJWZovIEmwfW200iLzEBI_3mapenJ8SWR7shsjFs"><b>Contaminant source identification using semi-supervised machine learning</b></a>,
133+
<br>V.V.&nbsp;Vesselinov, B.S.&nbsp;Alexandrov, and D.&nbsp;O’Malley.
134+
<br><cite>Journal of Contaminant Hydrology 212</cite>, 134-142.</li>
135+
136+
<li><a name="IlievDelayedSignals" href="https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0193974"><b>Nonnegative Matrix Factorization for identification of unknown number of sources emitting delayed signals</b></a>,
137+
<br>F.L.&nbsp;Iliev, V.G.&nbsp;Stanev, V.V.&nbsp;Vesselinov, and B.S.&nbsp;Alexandrov.
138+
<br><cite>PloS One 13 (3)</cite>, e0193974, 2018.</li>
139+
140+
<li><a name="StanevMathModelling" href="https://www.sciencedirect.com/science/article/pii/S0307904X18301227"><b>Identification of release sources in advection-diffusion system by machine learning combined with Green’s function inverse method</b></a>,
141+
<br>V.&nbsp;Stanev, F.&nbsp;Iliev, S.&nbsp;Hansen, V.&nbsp;Velimir, and B.&nbsp;Alexandrov.
142+
<br><cite>Applied Mathematical Modelling, Volume 60</cite>, August 2018, Pages 64-76.</li>
143+
144+
</ul>

0 commit comments

Comments
 (0)