awacke1 commited on
Commit
1f0abbb
ยท
1 Parent(s): 2e8c1e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -45,25 +45,25 @@ graph.edge("โœ๏ธ Model Updating", "๐ŸŽ“ Model Training")
45
 
46
  # Add the swim lanes
47
  with graph.subgraph(name="cluster_0") as c:
48
- c.attr(rank="same")
49
  c.attr(label=SWIM_LANES["Data Pipelines"])
50
  c.edge("๐Ÿ“Š Data Collection", "๐Ÿงน Data Cleaning", style="invis")
51
  c.edge("๐Ÿงน Data Cleaning", "๐Ÿ”ง Data Transformation", style="invis")
52
 
53
  with graph.subgraph(name="cluster_1") as c:
54
- c.attr(rank="same")
55
  c.attr(label=SWIM_LANES["Build and Train Models"])
56
  c.edge("๐Ÿ”Ž Feature Engineering", "โš™๏ธ Model Selection", style="invis")
57
  c.edge("โš™๏ธ Model Selection", "๐ŸŽ“ Model Training", style="invis")
58
 
59
  with graph.subgraph(name="cluster_2") as c:
60
- c.attr(rank="same")
61
  c.attr(label=SWIM_LANES["Deploy and Predict"])
62
  c.edge("๐Ÿšข Model Deployment", "๐Ÿ“ก Model Serving", style="invis")
63
  c.edge("๐Ÿ“ก Model Serving", "๐Ÿ”ฎ Predictions", style="invis")
64
 
65
  with graph.subgraph(name="cluster_3") as c:
66
- c.attr(rank="same")
67
  c.attr(label="Reinforcement Learning Human Feedback")
68
  c.edge("๐Ÿ”ฎ Predictions", "๐Ÿ‘ Feedback Collection", style="invis")
69
  c.edge("๐Ÿ‘ Feedback Collection", "๐Ÿค” Feedback Processing", style="invis")
 
45
 
46
  # Add the swim lanes
47
  with graph.subgraph(name="cluster_0") as c:
48
+ c.attr(rank="1")
49
  c.attr(label=SWIM_LANES["Data Pipelines"])
50
  c.edge("๐Ÿ“Š Data Collection", "๐Ÿงน Data Cleaning", style="invis")
51
  c.edge("๐Ÿงน Data Cleaning", "๐Ÿ”ง Data Transformation", style="invis")
52
 
53
  with graph.subgraph(name="cluster_1") as c:
54
+ c.attr(rank="2")
55
  c.attr(label=SWIM_LANES["Build and Train Models"])
56
  c.edge("๐Ÿ”Ž Feature Engineering", "โš™๏ธ Model Selection", style="invis")
57
  c.edge("โš™๏ธ Model Selection", "๐ŸŽ“ Model Training", style="invis")
58
 
59
  with graph.subgraph(name="cluster_2") as c:
60
+ c.attr(rank="3")
61
  c.attr(label=SWIM_LANES["Deploy and Predict"])
62
  c.edge("๐Ÿšข Model Deployment", "๐Ÿ“ก Model Serving", style="invis")
63
  c.edge("๐Ÿ“ก Model Serving", "๐Ÿ”ฎ Predictions", style="invis")
64
 
65
  with graph.subgraph(name="cluster_3") as c:
66
+ c.attr(rank="4")
67
  c.attr(label="Reinforcement Learning Human Feedback")
68
  c.edge("๐Ÿ”ฎ Predictions", "๐Ÿ‘ Feedback Collection", style="invis")
69
  c.edge("๐Ÿ‘ Feedback Collection", "๐Ÿค” Feedback Processing", style="invis")