-
[Active Learning with Clustering](http://www.jmlr.org/proceedings/papers/v16/bodo11a/bodo11a.pdf)
[Hierarchical sampling for active learning](http://dl.acm.org/citation.cfm?id=1390183)
[Active learn…
-
Hello,
I am trying to run the MCA with two variables, which are a climate model, WRF's output.
I get this error right after the bit:
```
mca.plot(mode=1, **pkwargs) :
```
ValueError: coord…
-
My partial code as follows:
```
// symmetric matrix
for (int i = 0; i < n - 1; ++i)
{
hessian.insert(i, i + 1) = 1.0;
hessian.insert(i + 1, i) = 1.0;
}
// upper triangular matrix
for…
-
In the gk_code base object there's a default implementation for calculating the growth rate and frequency from the amplitude of the fields, which is used in the cgyro child if the fields are not Nan. …
d7919 updated
2 years ago
-
Dear @giorgionicoletti,
I recently encountered your research and publication on PRG, and I appreciate the insights you provided. I am currently working through your PRR 2020 paper and attempting to…
-
Eigenvalues of a diagonal matrix are just it's main diagonal. Scipy seems to be unaware of it and takes a very long time to produce the same result.
### Reproducing code example:
```
im…
-
As described in #2 handling time-varying matrix size would be a valuable addition to this package. On looking into it the required algorithms seem straight-forward, so it may get done in the coming mo…
-
Hi guys,
Is there a function/method to compute curvature of the points?
Thanks
-
I've encountered some compile errors while using the GenEigsComplexShiftSolver class in the Spectra library for complex eigenvalue analysis of complex matrices. The issues are as follows:
File: Gen…
-
We want to support [Principle Component Analysis](https://en.wikipedia.org/wiki/Principal_component_analysis) as an advanced analytics option.
For an intro to PCA and how it looks in R it's worth l…