cogniveon commited on
Commit
6e53397
1 Parent(s): 79d8e4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ def get_murmur_from_recordings(audio):
29
 
30
 
31
  def get_patient_outcome(age, sex, height, weight, is_pregnant, murmur):
32
- model = keras.models.load_model('patient_outcome_classifier_v2.keras')
33
 
34
  is_pregnant = 1 if is_pregnant else 0
35
  sex2int = {'Male': 0, 'Female': 1}
 
29
 
30
 
31
  def get_patient_outcome(age, sex, height, weight, is_pregnant, murmur):
32
+ model = keras.models.load_model('patient_outcome_classifier.keras')
33
 
34
  is_pregnant = 1 if is_pregnant else 0
35
  sex2int = {'Male': 0, 'Female': 1}