https://github.com/deepcharles/hop
https://github.com/deepcharles/hop
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/deepcharles/hop
- Owner: deepcharles
- License: bsd-2-clause
- Created: 2024-10-16T21:21:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T18:53:10.000Z (over 1 year ago)
- Last Synced: 2025-01-09T09:25:45.427Z (over 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Change Point Detection in Hadamard Spaces by Alternating Minimization
Install with
```bash
python -m pip install -e .
```
# Usage example
```python
from hop import HOPSPD
algo = HOPSPD(penalty=0, init_cluster_centers=init_cluster_centers).fit(signal)
approx, state_sequence = algo.predict(signal, return_state_sequence=True)
```