Skip to content

Commit c4c9b65

Browse files
committed
GNN Exploration tweaks & Projects' CSS
1 parent a34f6dc commit c4c9b65

4 files changed

Lines changed: 23 additions & 21 deletions

File tree

docs/pages/aiDev/gnnExploration.js

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ export const pageListingData = {
3030
'caption' : ["A shortest path propagation in a Message Passing Neural Network (MPNN).",
3131
]
3232
},
33-
{
34-
'type' : 'video',
35-
'src' : '../pages/aiDev/images/mpnn_team_formation_singleMessage.webm',
36-
'alt' : "MPNN Team Formation",
37-
'style' : ['procPagesMediaStyle','setAspectRatio_2_1'],
38-
'caption' : ["A single pass of a MPNN to form a team.",
39-
]
40-
},
4133
{
4234
'type' : 'video',
4335
'src' : '../pages/aiDev/images/mpnn_team_formation_links.webm',
@@ -91,11 +83,19 @@ export const pageListingData = {
9183
<div class='procPagesAboutMeSpacer'></div>
9284
<br>
9385
<br>So I set up an 'online matchmaking' system,
94-
<br>&nbsp;&nbsp; Showing a simple single pass of detecting connections between nodes.
86+
<br>&nbsp;&nbsp; Showing neurons send multiple messages between connected nodes.
87+
88+
<br>
89+
<br> Here the nodes have dashed orange lines to show the 'potential teammates' between nodes.
9590
9691
<br>
97-
<br>It asks all of the connected nodes for their 'player stats' for a new game,
92+
<br>Multiple messages get sent between neighbors before the final 'prediction' is made.
93+
<br>&nbsp;&nbsp; And the 'prediction' is the final team of 4 players that should help build a balanced team, connected in Red.
94+
95+
<br>
96+
<br>It asks all of the connected nodes for their 'player affinity' for a new game,
9897
<br>&nbsp;&nbsp; Having individual stats 'shift' per game to mimic a player acting differently per game.
98+
<br>&nbsp;&nbsp; Then to use those stats to find 'potential teammates' for a balanced team.
9999
100100
<br>
101101
<br>Example Player Stats:
@@ -110,11 +110,12 @@ export const pageListingData = {
110110
<br>&nbsp;&nbsp; Helping to construct a team of players that can work together.
111111
112112
<br>
113-
<br> The third video is showing a better representation of a GNN,
114-
<br>&nbsp;&nbsp; Here the nodes have dashed orange lines to show the 'potential teammates' between nodes.
113+
<br>This becomes the core influence on the messages sent between nodes.
114+
<br>&nbsp;&nbsp; Which contains 'Team Affinity', 'Role Balance', 'Skill Match' and 'Selection Confidence'.
115115
116-
<br>Multiple messages get sent between neighbors before the final 'prediction' is made.
117-
<br>&nbsp;&nbsp; And the 'prediction' is the final team of 4 players that should help build a balanced team, connected in Red.
116+
<br>
117+
<br>These 4 values are what's sent between nodes to help determine if a player is 'willing' to change teams,
118+
<br>&nbsp;&nbsp; Influenced by the neighbor-of-neighbor player's stats.
118119
119120
<br>
120121
<br>It's pretty interesting to me,
-387 KB
Binary file not shown.

docs/style/procPages/procPages_aiDevStyle.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@
7373
.aiDevPageScrollbarStyle::-webkit-scrollbar-thumb {
7474
border-radius: 2px;
7575
cursor: grab;
76-
background-color: rgba(33, 53, 117, 0.75);
76+
background-color: rgba(52, 78, 161, 0.55);
7777
}
7878
.aiDevPageScrollbarStyle::-webkit-scrollbar-thumb:hover {
7979
border-radius: 2px;
80-
background-color: rgba(34, 61, 151, 0.811);
80+
background-color: rgba(34, 72, 196, 0.81);
8181
}
8282

8383
/* -- -- -- */

docs/style/procPages/procPages_projectsStyle.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/* -- -- -- */
1919

2020
.gitProjectsPage-sectionNavButtonStyle{
21-
color: rgba(186, 228, 255, 0.92);
21+
color: rgba(194, 231, 255, 0.92);
2222
text-shadow: 1.5px 1.5px 4px #252525;
2323
background-color: rgba(33, 81, 116, 0.15);
2424
border-color: rgba(84, 203, 255, 0.45) rgba(57, 141, 177, 0.2);
@@ -144,9 +144,9 @@
144144
border-bottom: 1px solid rgba(17, 108, 191, 0.4);
145145
}
146146
.procPagesNav_projectsStyle a {
147-
border: 1px solid rgb(119 178 223);
148-
color: rgb(175 220 255);
149-
background-color: rgba(32, 120, 188, 0.35);
147+
border: 1px solid #54a9ea;
148+
color: #b8dfff;
149+
background-color: rgba(37, 131, 204, 0.31);
150150
}
151151
.procPagesNav_projectsStyle a:hover {
152152
text-shadow: 1px 1.5px 4px #5fb3f4;
@@ -160,7 +160,8 @@
160160

161161
.procPagesNav_projectsActiveStyle {
162162
text-shadow: 1px 1.5px 4px #405e74 !important;
163-
background-color: rgba(22, 134, 219, 0.85) !important;
163+
background-color: #0085ea !important;
164+
color: #b8e0ff !important;
164165
}
165166

166167

0 commit comments

Comments
 (0)