lastcode commited on
Commit
3761836
·
verified ·
1 Parent(s): 84ffec8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -16,9 +16,6 @@ def predict(distillate_to_feed_ratio, feed_stage, top_stage_pressure, temp, feed
16
  naptha = round(float(pred[0][0]), 4)
17
  diesel = round(float(pred[0][1]), 4)
18
 
19
- naptha_status = "✅" if naptha >= 0.90 else "❌ below 90%"
20
- diesel_status = "✅" if diesel >= 0.90 else "❌ below 90%"
21
-
22
  return naptha, diesel
23
 
24
 
 
16
  naptha = round(float(pred[0][0]), 4)
17
  diesel = round(float(pred[0][1]), 4)
18
 
 
 
 
19
  return naptha, diesel
20
 
21