The sequel to clusterview. Built around the point and cluster structure of the kmeans project, aims to improve upon the design and structural weakness of clusterview and add many interesting interactive ways to explore kmeans.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Taylor Bockman ff4a8c5d0d Improve clearing canvas. hace 5 años
clusterview2 Add point clearing hace 5 años
.gitignore Porting over necessary clusterview components. hace 5 años
README.md New README image. hace 5 años
clusterview2.py Porting over necessary clusterview components. hace 5 años
clusterview2.ui Add point clearing hace 5 años
clusterview2_ui.py Add point clearing hace 5 años
example.PNG Better example image hace 5 años
main_window.py Improve clearing canvas. hace 5 años
requirements-dev.txt Porting over necessary clusterview components. hace 5 años
requirements.txt Make point inheirit from point in kmeans hace 5 años
setup.cfg Clean up clusterview old code a little bit, first launch without the grouping stuff. hace 5 años

README.md

clusterview2

The sequel to clusterview. Built around the point and cluster structure of the kmeans project, aims to improve upon the design and structural weakness of clusterview and add many interesting interactive ways to explore k-means.

Usage

First install the necessary packages:

pip install -r requirements.txt

Then launch clusterview2 using:

python clusterview2.py

from the root directory.

Development

Make sure to install the development requirements using pip install -r requirements-dev.txt. This will install all main requirements as well as useful testing and linting tools.

Regenerating the UI

After modifying the *.ui file in Qt Designer run

pyuic5 clusterview2.ui -o clusterview2_ui.py

to regenerate the UI python file.