Skip to content

Commit 645da2e

Browse files
committed
params limits updated
1 parent b795f51 commit 645da2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dashboard.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def load_data():
3636
['euclidean', 'cosine', 'manhattan', 'chebyshev'])
3737
n_neurons = st.sidebar.slider('map size (N x N)', 1, 150, 9, step=1)
3838
m_neurons = n_neurons
39-
sigma = st.sidebar.slider('sigma', 0.1, 10.0, 1.5, step=0.1)
40-
learning_rate = st.sidebar.slider('learning rate', 0.1, 50.0, 0.5, step=0.1)
39+
sigma = st.sidebar.slider('sigma', 0.1, 50.0, 1.5, step=0.1)
40+
learning_rate = st.sidebar.slider('learning rate', 0.1, 5.0, 0.5, step=0.1)
4141
iterations = st.sidebar.slider('training iterations', 0, 2000, 500, step=1)
4242
som = MiniSom(n_neurons, m_neurons, data.shape[1], sigma=sigma,
4343
neighborhood_function=neighborhood_function, activation_distance=activation_distance,

0 commit comments

Comments
 (0)