Matthew Harrigan
Matthew Harrigan
https://en.wikipedia.org/wiki/Canonical_link_element In addition to `msmbuilder.org/3.5/msm.html` have `msmbuilder.org/latest/msm.html` and use the canonical tag to point to that one
- [x] Implement feature / fix bug - [x] Add tests - [ ] Update changelog For homo-multi-mers, there's rotational or permutational symmetry. This featurizer takes the minimum distance from...
@jchodera reports on pyemma issue that they want to do rmsd clustering but: > @maxentile can't actually cluster our data with MSMBuilder without it throwing a segfault Can you provide...
`GaussianFusionHMM.draw_samples()` does not return `sample_features` as advertised by the docstring
cc msmbuilder-user mailing list
The random circuits generated take a list of qubit to implicitly define the device. In particular: it assumes that adjacent GridQubits should be interacted. I don't think this has ever...
I was trying to call `run` from a function which I am using `multiprocessing.Pool.map` to run a couple in parallel. Multiprocessing requires the function you're mapping over to be pickle-able...
When using python's `multiprocessing`, the function closure must be pickleable so that it can be shipped off to the subprocesses. This means you can't use lambdas or anything. A common...
The arguments for `random_rotations_between_grid_interaction_layers_circuit` combines `qubits` with `pattern: Sequence[GridInteractionLayer]` to figure out what pairs to activate. This assumes that all neighboring GridQubits are able to be activated, which may not...
See https://github.com/python/mypy/issues/1174 for full context, but there are common idioms where you may want to re-use a variable name ```python items: Set[Item] = set() items.add(...) items = frozenset(items) ``` Mypy...