I wonder how to choose the number of grids in Kohonen SOM. Also, what will happen when the number of grids increases?
How to choose appropriate number of grid for Kohonen's SOM?
400 views Asked by user10386405 At
1
There are 1 answers
Related Questions in DEEP-LEARNING
- Influence of Unused FFN on Model Accuracy in PyTorch
- How to train a model with CSV files of multiple patients?
- Does tensorflow have a way of calculating input importance for simple neural networks
- What is the alternative to module: tf.keras.preprocessing?
- Which library can replace causal_conv1d in machine learning programming?
- My MSE and MAE are low, but my R2 is not good, how to improve it?
- Sketch Guided Text to Image Generation
- ValueError: The shape of the target variable and the shape of the target value in `variable.assign(value)` must match
- a problem for save and load a pytorch model
- Optuna Hyperband Algorithm Not Following Expected Model Training Scheme
- How can I resolve this error and work smoothly in deep learning?
- Difference between model.evaluate and metrics.accuracy_score
- Integrating Mesonet algorithm with a webUI for deepfake detection model
- How can i edit the "wake-word-detection notebook" on coursera so it fit my own word?
- PyTorch training on M2 GPU slower than Colab CPU
Related Questions in GRID
- React Grid Drag n Drop
- Are there any tools or NuGet packages available for C# (Windows Forms) that assist in visualizing Dijkstra's algorithm?
- Syncfusion edit grid with timezone issue
- Fixing MUI TextField input text area
- How to solve this problem in performing grid search?
- Delete item in List
- positioning element in mui grid system for a nextjs app
- Change filter binding mode in Blazor Bootstrap Grid (https://demos.blazorbootstrap.com/grid)
- Using Bootstrap, grid items overlap one another when scaling down my browser window despite using breakpoints
- __init__() got an unexpected keyword argument 'layout'
- Grid based on 1. y-axis with 2. x-axis is shown in matplotlib
- Selenium Click and Page Load issue in AWS fargate with 24 chrome nodes and 2048 CPU and 1024 memory
- Looking for an approach to finding the minimum number of rectangles necessary in order to fill the occupied area of a 2D matrix?
- Shortest path finding in grid with turn cost
- Single row height won't change
Related Questions in SOM
- I want to build a linux image using yocto, image size needs to small. I am using a SOM from phytec
- Struggling to solve indexing error while cleaning data to train SOM
- Observation Labels in Kohonen Map in R
- How to calculate the topographic error fur SuperSOM made with the kohonen package?
- Plotting an array as a point in 2D space in Python?
- How do you know which is the closest class example(observation) to a class in Self Organizing Map?
- Debugger only shows Python bytecode when debugging SOMPY library functions
- How does the number of iterations affect convergence in a self-organizing map?
- 3D data with SUSI
- Transform 2d plot into 1d plot
- minisom python package pca initialization code
- SOM for clustering words
- Does the SOM clustering algorithm have cluster centers? If there is how to use matlab's SOMtoolbox package to calculate this cluster center
- Is it possible to create a heatmap within a SOM-Cluster with the values of a dimension, which is not included in the cluster itself in R?
- Clustering using SOM
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
In general, when you increase the number of model parameters, you increase the ability of the model to adapt to more complex problems. For SOMs, this is the case as well. But, the neurons are still connected in a neighborhood relation - so the effect is not linear.
As a practical guide, you can have a look at the documentation of the Python package
susi, where the grid size of the SOM, as well as other hyperparameters, are discussed (with literature references): https://susi.readthedocs.io/en/latest/hyperparameters.html