M0xn commited on
Commit
d3e4bc5
·
1 Parent(s): 69f95fb

Removed unnecessary lib

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,10 +1,11 @@
1
  import streamlit as st
2
  from pickle import load
3
  import numpy as np
4
- from subprocess import run
5
 
6
  models = load(open('lr_models.pkl', 'rb'))
7
 
 
8
  # ------------- FUNCTION DEFINITIONS ------------------
9
  def calculate_bmi(height_cm: int, weight_kg: int) -> None:
10
  height_m = height_cm/100
 
1
  import streamlit as st
2
  from pickle import load
3
  import numpy as np
4
+
5
 
6
  models = load(open('lr_models.pkl', 'rb'))
7
 
8
+
9
  # ------------- FUNCTION DEFINITIONS ------------------
10
  def calculate_bmi(height_cm: int, weight_kg: int) -> None:
11
  height_m = height_cm/100