REVIEW 4 major objections 6 minor 45 references
AMICA-Python reproduces the Fortran AMICA reference to a median relative log-likelihood difference of 1.07e-8 while running faster.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-01 14:58 UTC pith:UWM6BAKD
load-bearing objection A useful, well-validated Python port of AMICA; the equivalence claim is broader than the evidence, and the DAAREM speedup is overstated. the 4 major comments →
AMICA-Python: Adaptive Mixture Independent Component Analysis with Anderson Acceleration
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
AMICA-Python numerically matches the canonical Fortran AMICA program: across 14 EEG recordings, the median final normalized log-likelihood is 11.57285 for both implementations, with a median relative absolute difference of 1.07e-8. Re-running a previously published comparison of mutual information reduction and source dipolarity places both the standard and accelerated Python variants in the same high-performing region as the original AMICA, with near-dipolar component percentages around 29–31%. Default AMICA-Python was faster than Fortran on all 14 recordings and the Anderson-accelerated variant on 13 of 14, so the claim is that accessibility and speed are gained without changing the decomp
What carries the argument
The load-bearing object is AMICA's adaptive source-density model: each recovered source is represented as a weighted mixture of generalized-Gaussian densities, with location, inverse scale, shape, and mixture weight all learned jointly with the unmixing matrix. Each iteration computes per-mixture log-densities, uses a log-sum-exp collapse for the log-likelihood and a softmax along the mixture axis for responsibilities, then updates density parameters and the unmixing matrix with natural-gradient/Newton steps. The speed-up mechanism is damped Anderson acceleration with restarts and monotonicity control, which extrapolates the next iterate from recent fixed-point residuals through a ridge-regu
Load-bearing premise
The equivalence claim assumes that the reduced Python API, with its chosen defaults, maps exactly onto the Fortran program's full parameter set under the benchmark's 'equivalent parameters' setup; that mapping is never explicitly demonstrated, so the close agreement over 14 recordings might be dataset-specific rather than guaranteed by construction.
What would settle it
Run both implementations on more than 14 diverse EEG recordings plus synthetic mixtures with known source geometry, this time without seeding Python with Fortran's initial weights, and compare both final normalized log-likelihood and permutation-matched source correlations; a median relative log-likelihood gap above ~1e-6 or a median component correlation below ~0.999 would refute the claim of practical numerical equivalence.
If this is right
- EEG researchers who previously had to drive a Fortran executable through a separate EEG analysis environment can now obtain the same decomposition in Python, removing a major practical barrier to adopting AMICA.
- Because the default implementation was faster than Fortran on every benchmarked recording, switching to the Python port should not cost runtime.
- The accelerated variant cuts wall time to about two-thirds of Fortran on average, with only a ~6e-6 relative log-likelihood difference, making it attractive for large or repeated fits.
- The replicated mutual-information and dipolarity results indicate that the Python port preserves the empirical properties that made AMICA popular for EEG source separation.
Where Pith is reading between the lines
- A direct comparison of recovered source components (not just final log-likelihood) across recordings would strengthen the equivalence claim, since near-equal likelihoods do not by themselves guarantee the same sources up to permutation and scaling.
- The paper benchmarks the simplified Python API's defaults; a systematic sweep over the Fortran program's 86 parameters on synthetic mixtures would reveal whether any unexposed setting leads to divergence between the two implementations.
- The Anderson acceleration speedup is dataset-dependent (one recording was over 2x slower when accelerated); an adaptive controller that turns acceleration on or off based on observed residual behavior could make the gain more dependable.
- If the source-density estimator is made modular, as the paper suggests as a future step, AMICA could be tested against nonparametric density families, which may improve separation for sources that generalized Gaussians describe poorly.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents AMICA-Python, a reimplementation of the AMICA blind-source-separation algorithm in Python using PyTorch, with a scikit-learn-conformant API, batch processing, and an optional Anderson-acceleration (DAAREM) mode. The authors benchmark AMICA-Python against the canonical Fortran AMICA on 14 open EEG recordings, using matched initial conditions (Fortran-saved W, β, μ) and 'equivalent parameters'. They report median final normalized log-likelihood of 11.57285 for both implementations, a median relative absolute difference of 1.07×10⁻⁸, and faster wall-clock runtime (82.3% of Fortran for standard EM, 65.9% with DAAREM). They also replicate the Delorme et al. mutual-information/dipolarity comparison, placing AMICA-Python in the same region as the original AMICA. The paper claims that AMICA-Python 'reproduces the reference implementation to high numerical precision' and that DAAREM 'dramatically reduces' time to convergence.
Significance. If the numerical-equivalence claim is supported, this is a valuable software contribution: AMICA has been a MATLAB/Fortran-only tool, and a maintained, tested, scikit-learn-compatible Python implementation would substantially lower access barriers for EEG pipelines and for algorithm development. The manuscript's strengths include the matched-initialization protocol, which avoids circularity in the benchmark; the replication of the Delorme analysis using the original MATLAB/DIPFIT scripts; the provision of reproducible benchmarks with pinned commit hashes; and the integration of unit tests in CI. The runtime comparisons are also meaningful, with per-dataset detail. However, the central claim of 'reproducing the reference implementation' is presently stronger than the evidence: the equivalence of the reduced Python API to the 86-parameter Fortran API is asserted rather than demonstrated, and iterations-count mismatches in the benchmark show the implementations are not behaviorally identical in all settings.
major comments (4)
- [Methods, 'Benchmark Analysis'] The statement that both implementations 'were run using equivalent parameters' is not substantiated. The Fortran program exposes 86 tunable parameters; the Python API exposes only a handful, with 'sensible default values' for the rest. No mapping from Python defaults to Fortran parameters is provided, and the values of unexposed parameters (e.g., regularization, update-schedule choices, Newton-step settings, convergence tolerances) are never listed. The central numerical-agreement claim depends on this equivalence. Without the mapping, the observed agreement on 14 recordings with matched initial conditions could be specific to the benchmark configuration rather than evidence of general algorithmic equivalence. The authors should either provide a full parameter mapping and demonstrate agreement across a broader configuration space, or explicitly scope the claim to the tested default confi
- [Results, Table 3] The benchmark shows iteration-count mismatches under 'equivalent parameters': jo74 (897 vs. 998), ke70 (1306 vs. 1106), and kb77 (906 vs. 873). Additionally, gv84 hits the 2000-iteration cap with a |ΔLL| of 3.80e-5, which is roughly three orders of magnitude larger than the median relative difference. These mismatches indicate differences in convergence checks, update scheduling, or default tolerances. The paper does not explain them. This undermines the assertion that AMICA-Python is behaviorally identical to the Fortran implementation; at minimum, the authors should explain these differences and reconcile them with the 'equivalent parameters' claim, or temper the reproduction claim to 'close agreement on final likelihood under matched initial conditions'.
- [Abstract and Discussion] The abstract claims that AMICA-Python 'reproduces the reference implementation to high numerical precision.' The evidence supports close agreement on final normalized log-likelihoods for the 14 tested recordings under matched initializations, but not algorithmic equivalence across the parameter space. Given the missing parameter mapping and the iteration-count deviations, the claim should be scoped to the benchmark configuration, or the authors should provide additional validation (e.g., parameter sweeps, random initializations) to justify the stronger reproduction claim.
- [Results, DAAREM runtime] The abstract states that the Anderson-accelerated variant 'dramatically reduce[s] the time to convergence,' but Table 5 shows it is slower than standard EM on ds76 (ratio 2.024), and Table 4 shows it is slower than Fortran on ds76 (ratio 1.416). The Results section does acknowledge that 'DAAREM was not uniformly faster,' but the abstract and the initial framing of the contribution should reflect this variability. The authors should report the distribution of runtime ratios (e.g., median and range) and temper the language to 'can reduce time for most datasets' rather than implying uniform dramatic gains.
minor comments (6)
- [Table 4 caption] The caption contains a typo: 'accelleration' should be 'acceleration'; also 'Py-DAAREM accelleration' in the table title.
- [Global] The manuscript has several typos and grammatical issues: 'official', 'efficient', 'inefficient', 'discription', 'diretion', 'implemenations', and a stray 's' at the end of 'R2 = 0.962.s'. A careful proofreading pass is needed.
- [Acknowledgements] The Acknowledgments section contains placeholder text: 'placeholder for funding, institutional support, and project acknowledgements.' This must be filled before submission.
- [References] Reference [26] is a placeholder ('Placeholder Journal'), and the bibliography contains a duplicate: Walker and Ni's Anderson acceleration paper appears as both [2] and [43]. The duplicate should be removed and the placeholder completed.
- [Methods, 'AMICA-Python software'] The text says benchmark results and scripts are 'available at the links below,' but no URLs appear in the manuscript text. The repository links should be included explicitly, not only the commit hashes in Table 2.
- [Methods, parameter API] Because the paper argues that a simplified API is an improvement, a table listing the Python estimator's parameters and their default values, with a mapping to the corresponding Fortran parameters, would greatly aid reproducibility and would also address the main concern raised above. At minimum, the default values for convergence thresholds and DAAREM hyperparameters (order m, damping schedule) should be stated.
Circularity Check
No significant circularity: the numerical agreement is a measured outcome against an external Fortran reference, not a constructed identity.
full rationale
AMICA-Python's central numerical claim is validated against the external SCCN Fortran implementation, not against its own outputs. The benchmark uses matched initial conditions ('the initial unmixing matrix weights and density parameters ... were saved from the Fortran run and used in the Python runs'), but the final normalized log-likelihoods are produced by each implementation's own optimization trajectory; nothing in the equations or benchmark protocol forces the Python final likelihood to equal the Fortran final likelihood by construction. The paper states that 'Both implementations were run using equivalent parameters,' but it never maps the Fortran program's 86 parameters to the reduced Python API, and Table 3 shows iteration-count differences (e.g., jo74: 897 vs 998; ke70: 1306 vs 1106). This is a reproducibility/parameter-mapping gap and a correctness concern, but it is not circularity: the equivalence claim is an empirical input to the benchmark, not a consequence of the result being reported. The DAAREM acceleration evaluation is also empirical, comparing wall-clock times and likelihood trajectories using an external acceleration scheme (Henderson & Varadhan), not a redefinition of the target. The Delorme replication uses the original public EEGLAB scripts, data, and DIPFIT workflow, providing an independent external check. The only self-citation by the authors ([13], PyLossless) appears as background for EEG artifact processing and is not load-bearing. Therefore no circular step is identifiable; the paper is essentially self-contained against an external reference, and the score is 0.
Axiom & Free-Parameter Ledger
free parameters (4)
- Number of mixture terms M =
3
- Maximum iterations =
2000
- DAAREM hyperparameters (order m, damping schedule)
- Convergence thresholds epsilon_L, epsilon_g
axioms (4)
- domain assumption The Fortran AMICA implementation is the correct reference implementation of the algorithm.
- domain assumption The reduced-parameter Python API (with its default values) is behaviorally equivalent to the full 86-parameter Fortran API for the benchmark settings.
- domain assumption The AMICA update equations described in the paper faithfully match the Fortran code.
- domain assumption The 14 EEG recordings from the Delorme dataset are representative of AMICA's intended use cases.
read the original abstract
Adaptive Mixture Independent Component Analysis (AMICA) is widely used in EEG research and has long been associated with strong empirical performance for blind source separation. Despite its impact, practical use has historically depended on a single Fortran implementation, accessed via the EEGLAB toolbox for MATLAB, limiting its accessibility for analytical pipelines not designed within the MATLAB ecosystem. Here we present AMICA-Python, a Python implementation of the AMICA algorithm, with a scikit-learn-conformant API designed for integration with existing scientific Python pipelines. The implementation follows the reference algorithm closely while adopting modern software engineering practices and an interface familiar to Python users. Additionally, we introduce an optional Anderson acceleration scheme that can dramatically reduce the time to convergence for this relatively slow algorithm. To evaluate numerical agreement and practical performance, we benchmarked AMICA-Python against the reference Fortran implementation on 14 open EEG recordings. After averaging 3 runs of each implementation on all 14 recordings, AMICA-Python closely matched the reference, with a median final normalized log-likelihoods of 11.572 for both the Fortran and Python implementations, and a negligible median relative absolute difference of only $1.07\times10^{-8}$ when normalized by the absolute Fortran value. Runtime was also competitive. Relative to the reference implementation, AMICA-Python was 17.7\% faster, while the Anderson-accelerated variant was 34.1\% faster. AMICA-Python reproduces the reference implementation to high numerical precision with competitive runtime, while making AMICA available through a more accessible and extensible Python interface.
Figures
Reference graph
Works this paper leans on
- [1]
-
[2]
Walker and Peng Ni
Homer F. Walker and Peng Ni. Anderson acceleration for fixed-point iterations. SIAM Journal on Numerical Analysis , 49(4):1715–1735,
-
[3]
G. Varoquaux, S. Sadaghiani, P . Pinel, A. Kleinschmidt, J. B. Poline, and B. Thirion. A group model for stable multi-subject ICA on fMRI datasets. NeuroImage, 51(1):288–299, 2010. ISSN 10538119. doi: 10.1016/j.neuroimage.2010.02.010. URL http://arxiv.org/ abs/1006.2300
Pith/arXiv arXiv 2010
-
[4]
Independent EEG sources are dipolar
Arnaud Delorme, Jason Palmer, Julie Onton, Robert Oostenveld, and Scott Makeig. Independent EEG sources are dipolar. PLoS ONE, 7 (2):e30135, 2012. ISSN 1932-6203. doi: 10.1371/journal.pone.0030135. URL https://dx.plos.org/10.1371/journal.po ne.0030135
-
[5]
Pearlson, Jingyu Liu, and Vince D
Godfrey D. Pearlson, Jingyu Liu, and Vince D. Calhoun. An introductory review of parallel independent component analysis (p-ICA) and a guide to applying p-ICA to genetic data and imaging phenotypes to identify disease-associated biological pathways and systems in common complex disorders. Frontiers in Genetics , 6, 2015. ISSN 1664-8021. doi: 10.3389/fgene...
arXiv 2015
-
[6]
D.N. Rutledge and D. Jouan-Rimbaud Bouveresse. Independent components analysis with the JADE algorithm. TrAC Trends in Analytical Chemistry, 50:22–32, 2013. ISSN 01659936. doi: 10.1016/j.trac.2013.03.013. URL https://linkinghub.elsevier.com/re trieve/pii/S0165993613001222
-
[7]
Application of independent component analysis to microarrays
Su-In Lee and Serafim Batzoglou. Application of independent component analysis to microarrays. Genome Biology , 4(11):R76, 2003. ISSN 1474-760X. doi: 10.1186/gb-2003-4-11-r76. URL https://genomebiology.biomedcentral.com/articles/10. 1186/gb-2003-4-11-r76
-
[8]
M. Scholz, S. Gatzek, A. Sterling, O. Fiehn, and J. Selbig. Metabolite fingerprinting: detecting biological features by independent com- ponent analysis. Bioinformatics, 20(15):2447–2454, 2004. ISSN 1367-4811, 1367-4803. doi: 10.1093/bioinformatics/bth270. URL https://academic.oup.com/bioinformatics/article/20/15/2447/233609
-
[9]
Blind separation of noisy gaussian stationary sources
Jean-François Cardoso, Hichem Snoussi, and Jacques Delabrouille. Blind separation of noisy gaussian stationary sources. application to cosmic microwave background imaging. In 2002 11th European Signal Processing Conference , pages 1–4, 2002
2002
-
[10]
Yuhao Xiong, Wei Feng, Xin Zhou, Jürgen Kusche, Yingchun Shen, Meng Y ang, Changqing Wang, and Min Zhong. Separation of earthquake and hydrology signals from GRACE satellites data via independent component analysis: a case study in the sumatra region. Geophysical Journal International , 239(3):1597–1616, 2024. ISSN 0956-540X, 1365-246X. doi: 10.1093/gji/g...
-
[11]
WordICA—emergence of linguistic representations for words by independent component analysis
Timo Honkela, Aapo Hyvärinen, and Jaakko J Väyrynen. WordICA—emergence of linguistic representations for words by independent component analysis. Natural Language Engineering, 16(3):277–308, 2010
2010
-
[12]
Aapo Hyvärinen, Ilyes Khemakhem, and Hiroshi Morioka. Nonlinear independent component analysis for principled disentanglement in unsupervised deep learning. Patterns, 4(10):100844, October 2023. ISSN 26663899. doi: 10.1016/j.patter.2023.100844. URL https://linkinghub.elsevier.com/retrieve/pii/S2666389923002234
arXiv 2023
-
[13]
PyLossless: A non-destructive EEG processing pipeline
Scott Huberty, James Desjardins, T yler Collins, Mayada Elsabbagh, and Christian O’Reilly. PyLossless: A non-destructive EEG processing pipeline. Behavior Research Methods , 58(8):220, July 2026. ISSN 1554-3528. doi: 10.3758/s13428-026-02997-z. URL https: //link.springer.com/10.3758/s13428-026-02997-z
-
[14]
R. Vigario, J. Sarela, V . Jousmiki, M. Hamalainen, and E. Oja. Independent component approach to the analysis of eeg and meg recordings. IEEE Transactions on Biomedical Engineering, 47(5):589–593, 2000. doi: 10.1109/10.841330
-
[15]
AMICA: An adaptive mixture of independent component analyzers with shared components
Jason A Palmer, Ken Kreutz-Delgado, and Scott Makeig. AMICA: An adaptive mixture of independent component analyzers with shared components. Technical report, Swartz Center for Computational Neuroscience, University of California San Diego, 2011
2011
-
[16]
Heike Leutheuser, Florian Gabsteiger, Felix Hebenstreit, Pedro Reis, Matthias Lochmann, and Bjoern Eskofier. Comparison of the AMICA and the InfoMax algorithm for the reduction of electromyogenic artifacts in EEG data. In 2013 35th Annual International Conference of the IEEE Engineering in Medicine and Biology Society (EMBC) , pages 6804–6807. IEEE, 2013....
arXiv 2013
-
[17]
Anthony J. Bell and Terrence J. Sejnowski. An information-maximization approach to blind separation and blind deconvolution. Neural Computation, 7(6):1129–1159, 1995. ISSN 0899-7667, 1530-888X. doi: 10.1162/neco.1995.7.6.1129. URL https://direct.mit .edu/neco/article/7/6/1129-1159/5909
-
[18]
Te-Won Lee, Mark Girolami, and Terrence J. Sejnowski. Independent component analysis using an extended infomax algorithm for mixed subgaussian and supergaussian sources. Neural Computation, 11(2):417–441, 1999. ISSN 0899-7667, 1530-888X. doi: 10.1162/089976 699300016719. URL https://direct.mit.edu/neco/article/11/2/417-441/6242
doi:10.1162/089976 1999
-
[19]
Orthogonal extended infomax algorithm
Nicole Ille. Orthogonal extended infomax algorithm. Journal of Neural Engineering , 21(2), 2024. ISSN 1741-2552. doi: 10.1088/1741 -2552/ad38db
doi:10.1088/1741 2024
-
[20]
Te-Won Lee, M.S. Lewicki, and T.J. Sejnowski. ICA mixture models for unsupervised classification of non-gaussian classes and automatic context switching in blind signal separation. IEEE Transactions on Pattern Analysis and Machine Intelligence , 22(10):1078–1089, 2000. ISSN 01628828. doi: 10.1109/34.879789. URL http://ieeexplore.ieee.org/document/879789/
-
[21]
Caveats with stochastic gradient and maximum likelihood based ICA for EEG
Jair Montoya-Martínez, Jean-François Cardoso, and Alexandre Gramfort. Caveats with stochastic gradient and maximum likelihood based ICA for EEG. In Petr Tichavský, Massoud Babaie-Zadeh, Olivier J.J. Michel, and Nadège Thirion-Moreau, editors,Latent Variable Analysis and Signal Separation , volume 10169, pages 279–289. Springer International Publishing, 20...
-
[22]
A. Hyvärinen and E. Oja. Independent component analysis: algorithms and applications. Neural Networks, 13(4):411–430, 2000. ISSN 08936080. doi: 10.1016/S0893-6080(00)00026-5. URL https://linkinghub.elsevier.com/retrieve/pii/S089360 8000000265
-
[23]
Faster independent component analysis by preconditioning with hessian approximations, 2017
Pierre Ablin, Jean-François Cardoso, and Alexandre Gramfort. Faster independent component analysis by preconditioning with hessian approximations, 2017. URL https://arxiv.org/abs/1706.08171. arXiv:1706.08171, version 3
Pith/arXiv arXiv 2017
-
[24]
Stability analysis of learning algorithms for blind source separation
Shun-ichi Amari, Tian-ping Chen, and Andrzej Cichocki. Stability analysis of learning algorithms for blind source separation. Neural Networks, 10(8):1345–1351, 1997. ISSN 08936080. doi: 10.1016/S0893-6080(97)00039-7. URL https://linkinghub.elsev ier.com/retrieve/pii/S0893608097000397
-
[25]
Palmer, Kenneth Kreutz-Delgado, and Scott Makeig
Jason A. Palmer, Kenneth Kreutz-Delgado, and Scott Makeig. Newton method for the ica mixture model. In 2008 IEEE International Conference on Acoustics, Speech and Signal Processing , pages 1805–1808, 2008. doi: 10.1109/ICASSP.2008.4517982
arXiv 2008
-
[26]
R. M. Frank et al. An exploration of optimal parameters for efficient blind source separation of eeg recordings using amica. Placeholder Journal, 2023. Replace this placeholder entry with the final bibliographic metadata you want to cite
2023
-
[27]
J. Palmer. Code for amica: Adaptive mixture ica with shared components. https://github.com/sccn/amica , 2025. Accessed: November 4, 2025
2025
-
[28]
Reimplementation of amica in julia
Alexander Lulkin. Reimplementation of amica in julia. Bachelor’s thesis, University of Stuttgart, Stuttgart, Germany, March 2023. URL https://elib.uni-stuttgart.de/bitstreams/fa65d016-a85e-42d3-9ba0-004507271634/download
2023
-
[29]
Arnaud Delorme and Scott Makeig. EEGLAB: an open source toolbox for analysis of single-trial EEG dynamics including independent component analysis. Journal of Neuroscience Methods, 134(1):9–21, 2004. ISSN 01650270. doi: 10.1016/j.jneumeth.2003.10.009. URL https://linkinghub.elsevier.com/retrieve/pii/S0165027003003479
-
[30]
Pedregosa, G
F. Pedregosa, G. Varoquaux, A. Gramfort, et al. Scikit-learn: Machine learning in Python. Journal of Machine Learning Research , 12: 2825–2830, 2011
2011
-
[31]
Spectral independent component analysis with noise modeling for m/EEG source separation
Pierre Ablin, Jean-François Cardoso, and Alexandre Gramfort. Spectral independent component analysis with noise modeling for m/EEG source separation. Journal of Neuroscience Methods , 356:109144, 2021. ISSN 01650270. doi: 10.1016/j.jneumeth.2021.109144. URL https://linkinghub.elsevier.com/retrieve/pii/S0165027021000790
arXiv 2021
-
[32]
Engemann, Daniel Strohmeier, Christian Brodbeck, Lauri Parkkonen, and Matti S
Alexandre Gramfort, Martin Luessi, Eric Larson, Denis A. Engemann, Daniel Strohmeier, Christian Brodbeck, Lauri Parkkonen, and Matti S. Hämäläinen. MEG and EEG data analysis with MNE-Python. Frontiers in Neuroscience, 7:267, 2013. doi: 10.3389/fnins.2013 .00267. URL https://doi.org/10.3389/fnins.2013.00267
arXiv 2013
-
[33]
Charles R. Harris, K. Jarrod Millman, and ... Array programming with NumPy. Nature, 585(7825):357–362, September 2020. doi: 10.1038/s41586-020-2649-2
-
[34]
Oliphant, Matt Haberland, T yler Reddy, David Cournapeau, Evgeni Burovski, Pearu Peterson, Warren Weckesser, Jonathan Bright, Stéfan J
Pauli Virtanen, Ralf Gommers, Travis E. Oliphant, Matt Haberland, T yler Reddy, David Cournapeau, Evgeni Burovski, Pearu Peterson, Warren Weckesser, Jonathan Bright, Stéfan J. van der Walt, Matthew Brett, Joshua Wilson, K. Jarrod Millman, Nikolay Mayorov, Andrew R. J. Nelson, Eric Jones, Robert Kern, Eric Larson, C J Carey, İlhan Polat, Yu Feng, Eric W. M...
2020
-
[35]
Data structures for statistical computing in python
Wes McKinney. Data structures for statistical computing in python. In Stéfan van der Walt and Jarrod Millman, editors, Proceedings of the 9th Python in Science Conference , pages 51 – 56, 2010
2010
-
[36]
Polars: Extremely fast query engine for dataframes, written in rust
Polars Contributors. Polars: Extremely fast query engine for dataframes, written in rust. https://github.com/pola-rs/polars, 2026
2026
-
[37]
Palmer, Kenneth Kreutz-Delgado, and Scott Makeig
Jason A. Palmer, Kenneth Kreutz-Delgado, and Scott Makeig. Super-gaussian mixture source model for ICA. In Justinian Rosca, Deniz Erdogmus, José C. Príncipe, and Simon Haykin, editors, Independent Component Analysis and Blind Signal Separation , volume 3889, pages 854–861. Springer Berlin Heidelberg, 2006. ISBN 978-3-540-32630-4 978-3-540-32631-1. doi: 10...
-
[38]
Modeling brain dynamic state changes with adaptive mixture independent component analysis
Sheng-Hsiou Hsu, Luca Pion-Tonachini, Jason Palmer, Makoto Miyakoshi, Scott Makeig, and Tzyy-Ping Jung. Modeling brain dynamic state changes with adaptive mixture independent component analysis. NeuroImage, 183:47–61, 2018. ISSN 10538119. doi: 10.1016/j.ne uroimage.2018.08.001. URL https://linkinghub.elsevier.com/retrieve/pii/S1053811918306888
doi:10.1016/j.ne 2018
-
[39]
Acceleration methods for fixed-point iterations
Y ousef Saad. Acceleration methods for fixed-point iterations. Acta Numerica, 34:805–890, July 2025. ISSN 0962-4929, 1474-0508. doi: 10.1017/S0962492924000096. URL https://www.cambridge.org/core/product/identifier/S096249292400009 6/type/journal_article
-
[40]
Simple and Globally Convergent Methods for Accelerating the Convergence of Any EM Algorithm
Ravi Varadhan and Christophe Roland. Simple and Globally Convergent Methods for Accelerating the Convergence of Any EM Algorithm. Scandinavian Journal of Statistics , 35(2):335–353, June 2008. ISSN 0303-6898, 1467-9469. doi: 10.1111/j.1467-9469.2007.00585.x. URL https://onlinelibrary.wiley.com/doi/10.1111/j.1467-9469.2007.00585.x
arXiv 2008
-
[41]
Nicholas C. Henderson and Ravi Varadhan. Damped anderson acceleration with restarts and monotonicity control for accelerating EM and EM-like algorithms. Journal of Computational and Graphical Statistics , 28(4):834–846, 2019. ISSN 1061-8600, 1537-2715. doi: 10.108 0/10618600.2019.1594835. URL https://www.tandfonline.com/doi/full/10.1080/10618600.2019.1594835
arXiv 2019
-
[42]
Damped anderson mixing for deep reinforcement learning: Acceleration, convergence, and stabilization
Ke Sun, Y afei Wang, Yi Liu, Bo Pan, Shangling Jui, Bei Jiang, Linglong Kong, et al. Damped anderson mixing for deep reinforcement learning: Acceleration, convergence, and stabilization. Advances in Neural Information Processing Systems, 34:3732–3743, 2021
2021
-
[43]
Anderson acceleration for fixed-point iterations
Homer F Walker and Peng Ni. Anderson acceleration for fixed-point iterations. SIAM Journal on Numerical Analysis , 49(4):1715–1735, 2011
2011
-
[44]
Python array API standard: Toward array interoperability in the scientific python ecosystem
Aaron Meurer, Athan Reines, Ralf Gommers, Y ao-Lung Fang, John Kirkham, Matthew Barber, Stephan Hoyer, Andreas Müller, Sheng Zha, Saul Shanabrook, Stephannie Gacha, Mario Lezcano-Casado, Thomas Fan, T yler Reddy, Alexandre Passos, Hyukjin Kwon, Travis Oliphant, and Consortium Standards. Python array API standard: Toward array interoperability in the scien...
-
[2011]
URL https://doi.org/10.1137/10078356X
doi: 10.1137/10078356X. URL https://doi.org/10.1137/10078356X
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.