Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1033,11 +1033,11 @@ with tab1:
|
|
1033 |
# Parameter inputs with defaults and validation
|
1034 |
st.markdown('<div class="parameter-container">', unsafe_allow_html=True)
|
1035 |
st.markdown("### Matrix Parameters")
|
1036 |
-
n = st.number_input("Sample size (n)", min_value=5, max_value=
|
1037 |
help="Number of samples", key="eig_n")
|
1038 |
-
p = st.number_input("Dimension (p)", min_value=5, max_value=
|
1039 |
help="Dimensionality", key="eig_p")
|
1040 |
-
a = st.number_input("Value for a", min_value=1.1, max_value=
|
1041 |
help="Parameter a > 1", key="eig_a")
|
1042 |
|
1043 |
# Automatically calculate y = p/n (as requested)
|
|
|
1033 |
# Parameter inputs with defaults and validation
|
1034 |
st.markdown('<div class="parameter-container">', unsafe_allow_html=True)
|
1035 |
st.markdown("### Matrix Parameters")
|
1036 |
+
n = st.number_input("Sample size (n)", min_value=5, max_value=10000000, value=100, step=5,
|
1037 |
help="Number of samples", key="eig_n")
|
1038 |
+
p = st.number_input("Dimension (p)", min_value=5, max_value=10000000, value=50, step=5,
|
1039 |
help="Dimensionality", key="eig_p")
|
1040 |
+
a = st.number_input("Value for a", min_value=1.1, max_value=100000.0, value=2.0, step=0.1,
|
1041 |
help="Parameter a > 1", key="eig_a")
|
1042 |
|
1043 |
# Automatically calculate y = p/n (as requested)
|