Update app.py
Browse files
app.py
CHANGED
|
@@ -123,7 +123,7 @@ if uploaded_file is not None:
|
|
| 123 |
"Sigma (Blur Amount):",
|
| 124 |
0.1, 5.0, 2.0, step=0.1
|
| 125 |
)
|
| 126 |
-
elif
|
| 127 |
smoothing_params['window_size'] = st.slider(
|
| 128 |
"Window Size:",
|
| 129 |
3, 51, 5, step=2
|
|
|
|
| 123 |
"Sigma (Blur Amount):",
|
| 124 |
0.1, 5.0, 2.0, step=0.1
|
| 125 |
)
|
| 126 |
+
elif smoothing_method == "Savitzky-Golay":
|
| 127 |
smoothing_params['window_size'] = st.slider(
|
| 128 |
"Window Size:",
|
| 129 |
3, 51, 5, step=2
|