w11wo commited on
Commit
31d37bb
1 Parent(s): 1ae1bf6

fixed scalar value error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -65,7 +65,7 @@ def main():
65
  else:
66
  # render masked language modeling table
67
  mlm_result = mask_api(inputs=user_input)
68
- st.write(mlm_result)
69
  mlm_df = pd.DataFrame(mlm_result)
70
  mlm_df.drop(columns=["token", "token_str"], inplace=True)
71
  mlm_df_styled = mlm_df.copy(deep=False)
 
65
  else:
66
  # render masked language modeling table
67
  mlm_result = mask_api(inputs=user_input)
68
+ # st.write(mlm_result)
69
  mlm_df = pd.DataFrame(mlm_result)
70
  mlm_df.drop(columns=["token", "token_str"], inplace=True)
71
  mlm_df_styled = mlm_df.copy(deep=False)