CosmickVisions commited on
Commit
9a91a20
·
verified ·
1 Parent(s): 6b6598c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -406,7 +406,7 @@ elif app_mode == "Smart Cleaning":
406
 
407
  seq_length = st.number_input("Sequence Length (for RNN)", 10, 100, 30, help =" Length to do that. make them more power ")
408
 
409
- method = st.selectbox("Imputation Method", ["KNN Imputation", "Median Fill", "Mean Fill",
410
  if method == "KNN Imputation":
411
  knn_neighbors = st.slider("KNN Neighbors", 2, 10, 5, help="Number of neighbors for KNN Imputation.") #Parameter
412
 
 
406
 
407
  seq_length = st.number_input("Sequence Length (for RNN)", 10, 100, 30, help =" Length to do that. make them more power ")
408
 
409
+ method = st.selectbox("Imputation Method", ["KNN Imputation", "Median Fill", "Mean Fill", "Drop Missing"])
410
  if method == "KNN Imputation":
411
  knn_neighbors = st.slider("KNN Neighbors", 2, 10, 5, help="Number of neighbors for KNN Imputation.") #Parameter
412