bright1 commited on
Commit
a58c568
1 Parent(s): cacfe4b

removed unused libraries

Browse files
__pycache__/app.cpython-39.pyc DELETED
Binary file (4.24 kB)
 
__pycache__/utils.cpython-39.pyc DELETED
Binary file (1.53 kB)
 
app.py CHANGED
@@ -4,8 +4,6 @@ import pickle
4
  import pandas as pd
5
  import numpy as np
6
  from utils import create_new_columns, create_processed_dataframe
7
- import os
8
-
9
 
10
 
11
  pipeline_pkl = "full_pipeline.pkl"
 
4
  import pandas as pd
5
  import numpy as np
6
  from utils import create_new_columns, create_processed_dataframe
 
 
7
 
8
 
9
  pipeline_pkl = "full_pipeline.pkl"
requirements.txt CHANGED
@@ -1,6 +1,4 @@
1
  gradio
2
- matplotlib==3.3.4
3
  numpy==1.20.1
4
  pandas==1.2.4
5
- seaborn==0.11.1
6
  scikit-learn==0.24.1
 
1
  gradio
 
2
  numpy==1.20.1
3
  pandas==1.2.4
 
4
  scikit-learn==0.24.1
utils.py CHANGED
@@ -1,7 +1,6 @@
1
  import pandas as pd
2
  import numpy as np
3
  import pickle
4
- import os
5
 
6
  # Define the name of the pickle file containing a pre-trained data preprocessing pipeline.
7
  pipeline_pkl = "full_pipeline.pkl"
 
1
  import pandas as pd
2
  import numpy as np
3
  import pickle
 
4
 
5
  # Define the name of the pickle file containing a pre-trained data preprocessing pipeline.
6
  pipeline_pkl = "full_pipeline.pkl"