Skip to content

Commit

Permalink
params limits updated
Browse files Browse the repository at this point in the history
  • Loading branch information
JustGlowing committed May 17, 2021
1 parent b795f51 commit 645da2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def load_data():
['euclidean', 'cosine', 'manhattan', 'chebyshev'])
n_neurons = st.sidebar.slider('map size (N x N)', 1, 150, 9, step=1)
m_neurons = n_neurons
sigma = st.sidebar.slider('sigma', 0.1, 10.0, 1.5, step=0.1)
learning_rate = st.sidebar.slider('learning rate', 0.1, 50.0, 0.5, step=0.1)
sigma = st.sidebar.slider('sigma', 0.1, 50.0, 1.5, step=0.1)
learning_rate = st.sidebar.slider('learning rate', 0.1, 5.0, 0.5, step=0.1)
iterations = st.sidebar.slider('training iterations', 0, 2000, 500, step=1)
som = MiniSom(n_neurons, m_neurons, data.shape[1], sigma=sigma,
neighborhood_function=neighborhood_function, activation_distance=activation_distance,
Expand Down

0 comments on commit 645da2e

Please sign in to comment.