UCS2014 commited on
Commit
5962fee
·
verified ·
1 Parent(s): 3129369

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -507,6 +507,19 @@ if st.session_state.app_step == "intro":
507
  "2) Click **Run Model** to compute metrics and plots. \n"
508
  "3) **Proceed to Validation** (with actual TOC) or **Proceed to Prediction** (no TOC)."
509
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  if st.button("Start Showcase", type="primary"):
511
  st.session_state.app_step = "dev"; st.rerun()
512
 
 
507
  "2) Click **Run Model** to compute metrics and plots. \n"
508
  "3) **Proceed to Validation** (with actual TOC) or **Proceed to Prediction** (no TOC)."
509
  )
510
+ st.subheader("Input Features Used by the Model")
511
+ st.markdown("""
512
+ The TOC estimation model uses the following eight well-logging features:
513
+
514
+ - **AHT90 (Average Hydrocarbon Tool 90° Phase)**
515
+ - **DT (Delta-T Sonic Travel Time)**
516
+ - **GR (Gamma Ray)**
517
+ - **K (Potassium)**
518
+ - **RHOB (Bulk Density)**
519
+ - **TNPH (Thermal Neutron Porosity)**
520
+ - **Th (Thorium)**
521
+ - **Ur (Uranium)**
522
+ """)
523
  if st.button("Start Showcase", type="primary"):
524
  st.session_state.app_step = "dev"; st.rerun()
525