Building a Blog with MDX
|
metaweb
This is the inaugural post on my blog. I built this using MDX with SolidJS, which lets me mix Markdown with interactive components.
Code Highlighting
Here's an example of syntax-highlighted code:
import torch
import torch.nn as nn
class GNNLayer(nn.Module):
def __init__(self, in_dim, out_dim):
super().__init__()
self.linear = nn.Linear(in_dim, out_dim)
def forward(self, x, adj):
return torch.relu(self.linear(adj @ x))Math Formulas
The message-passing framework in GNNs can be expressed as:
Where is the representation of node at layer , and denotes the neighborhood of .
GFM Features
| Feature | Supported |
|---|---|
| Tables | Yes |
| Strikethrough | |
| Task Lists | Yes |
- MDX pipeline
- Code highlighting
- Math rendering
- D3 visualizations
D3 Visualization
A force-directed graph showing the GNN research landscape. Nodes are draggable.