saba000farahani commited on
Commit
9e7b677
·
verified ·
1 Parent(s): 0b6d921

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -6,6 +6,13 @@ from tensorflow.keras.models import load_model
6
  from sklearn.preprocessing import MinMaxScaler
7
  import os
8
 
 
 
 
 
 
 
 
9
  # Directory paths for the saved models
10
  script_dir = os.path.dirname(os.path.abspath(__file__))
11
  scaler_path = os.path.join(script_dir, 'toolkit', 'scaler_X.json')
 
6
  from sklearn.preprocessing import MinMaxScaler
7
  import os
8
 
9
+ print(f"Gradio version: {gr.__version__}")
10
+ print(f"NumPy version: {np.__version__}")
11
+ print(f"Scikit-learn version: {sklearn.__version__}")
12
+ print(f"Joblib version: {joblib.__version__}")
13
+ print(f"TensorFlow version: {tf.__version__}")
14
+ print(f"Pandas version: {pd.__version__}")
15
+
16
  # Directory paths for the saved models
17
  script_dir = os.path.dirname(os.path.abspath(__file__))
18
  scaler_path = os.path.join(script_dir, 'toolkit', 'scaler_X.json')