suvradeepp commited on
Commit
1a692dd
·
verified ·
1 Parent(s): 49575d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -7,27 +7,27 @@ st.title("Machine Learning Visualizations Dashboard")
7
 
8
  # List of available apps with display names and ports
9
  APPS = {
10
- "Decision Tree Steps": {
11
  "file": "decision_tree_steps.py",
12
  "port": 8502
13
  },
14
- "Voting Regressor": {
15
  "file": "voting_regressor_viz.py",
16
  "port": 8503
17
  },
18
- "Voting Classifier": {
19
  "file": "voting_classifier_viz.py",
20
  "port": 8504
21
  },
22
- "Bagging Regressor": {
23
  "file": "bagging_regressor_viz.py",
24
  "port": 8505
25
  },
26
- "Bagging Classifier": {
27
  "file": "bagging_classifier_viz.py",
28
  "port": 8506
29
  },
30
- "GD/SGD Visualizer": {
31
  "file": "gd_sgd_app.py",
32
  "port": 8507
33
  }
@@ -72,4 +72,4 @@ with col3:
72
  st.error(f"Missing file: {app['file']}")
73
 
74
  st.markdown("---")
75
- st.info("ℹ️ Each app will open in a new tab automatically. Allow pop-ups if your browser blocks them.")
 
7
 
8
  # List of available apps with display names and ports
9
  APPS = {
10
+ "Decision Tree Steps -> decision_tree_steps": {
11
  "file": "decision_tree_steps.py",
12
  "port": 8502
13
  },
14
+ "Voting Regressor -> voting_regressor_viz": {
15
  "file": "voting_regressor_viz.py",
16
  "port": 8503
17
  },
18
+ "Voting Classifier -> voting_classifier_viz": {
19
  "file": "voting_classifier_viz.py",
20
  "port": 8504
21
  },
22
+ "Bagging Regressor -> bagging_regressor_viz": {
23
  "file": "bagging_regressor_viz.py",
24
  "port": 8505
25
  },
26
+ "Bagging Classifier -> bagging_classifier_viz": {
27
  "file": "bagging_classifier_viz.py",
28
  "port": 8506
29
  },
30
+ "GD/SGD Visualizer -> gd_sgd_app": {
31
  "file": "gd_sgd_app.py",
32
  "port": 8507
33
  }
 
72
  st.error(f"Missing file: {app['file']}")
73
 
74
  st.markdown("---")
75
+ st.info("ℹ️ For each app click the mapped sidebar because as of now the ports aren't working so simply click the sidebar option to play around")