-
Notifications
You must be signed in to change notification settings - Fork 426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Topographic error for hexa lattice and partitioned errors for when data is too big (memory not enough for errors calculations) #96
base: master
Are you sure you want to change the base?
Conversation
speed up in update method
added return_indices parameter to win_map()
This is so we can start bokeh plotting and separate out the matplotlib code from eventual bokeh code.
This is following the example laid out by matplotlib and provides an interactive version so you can hover over and see where data points are located on the SOM.
This is so it can be viewed in GitHub without having to generate in the notebook. Also change language so it's more formal. This follows a code review.
This is so it aligns closer to matplotlib version.
…logy-bokeh Example: Hexagonal Topology bokeh
Added requirement in introduction
added utf-8 encoding in "open" to make example running
deleted import of scipy.misc.imresize
corrected typo in introduction
corrected typos in introduction
included various visualizations: starburst map, property distribution, quality heatmap and property plots using plotly library
corrected typo
advanced visualizations in new file
new visualizations
hi @ricardomourarpm, thanks for this PR. Regarding the computation of the quantization error in chunks, I would love to have a notebook where the quantization error is computed in chunks in the examples folder. I could merge that pretty easily if the example is simple and properly commented. Regarding the topographic error, I'm not sure I want to add this feature as it currently seems too much code to maintain and your PR doesn't include documentation or tests. If you still want me to consider your submissions to add these features into
|
Now the topographic error for hexa topology is available and
since the way the errors are calculate takes too much memory I've add two partitioned error calculating functions.
New_hexa example in root shows that works.
Please check!