shrut27 commited on
Commit
6462b67
·
verified ·
1 Parent(s): 5adae99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -99,7 +99,7 @@ st.title("Piezoelectric Material Discovery Assistant")
99
  dataset = load_data()
100
  query = st.text_input("Enter your query (e.g., 'Find materials with high piezoelectric constants'):")
101
  df = pd.DataFrame(dataset)
102
- target_property = st.selectbox("Select a property to analyze:", ["dfpt_piezo_max_dij", "optb88vdw_bandgap", "density"])
103
  threshold = st.number_input("Threshold value:", min_value=0.0, value=1.0)
104
  optimization_goal = st.selectbox("Optimization goal:", ["above", "below"])
105
 
 
99
  dataset = load_data()
100
  query = st.text_input("Enter your query (e.g., 'Find materials with high piezoelectric constants'):")
101
  df = pd.DataFrame(dataset)
102
+ target_property = st.selectbox("Select a property to analyze:", ["dfpt_piezo_max_dij", "optb88vdw_bandgap", "density","min_ir_mode","max_ir_mode"])
103
  threshold = st.number_input("Threshold value:", min_value=0.0, value=1.0)
104
  optimization_goal = st.selectbox("Optimization goal:", ["above", "below"])
105