sid22669 commited on
Commit
4a81fad
·
verified ·
1 Parent(s): 03bdd45

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -3
src/streamlit_app.py CHANGED
@@ -2,11 +2,11 @@ import streamlit as st
2
  import joblib
3
  import numpy as np
4
 
5
- with open('forest_fire_model', 'rb') as file:
6
  model = joblib.load(file)
7
- with open('forest_fire_scaler', 'rb') as file:
8
  scaler = joblib.load(file)
9
- with open('forest_fire_encoder', 'rb') as file:
10
  encoder = joblib.load(file)
11
 
12
 
 
2
  import joblib
3
  import numpy as np
4
 
5
+ with open('src/forest_fire_model', 'rb') as file:
6
  model = joblib.load(file)
7
+ with open('src/forest_fire_scaler', 'rb') as file:
8
  scaler = joblib.load(file)
9
+ with open('src/forest_fire_encoder', 'rb') as file:
10
  encoder = joblib.load(file)
11
 
12