riship-nv commited on
Commit
da65732
1 Parent(s): 1c0cccd

creating a readme for RGCN

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md CHANGED
@@ -1,3 +1,33 @@
1
  ---
2
  license: openrail
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: openrail
3
+ tags:
4
+ - graphs
5
+ pipeline_tag: graph-ml
6
  ---
7
+ # Model Card for RGCN
8
+
9
+ RGCN is a GNN that can be used to learn node embeddings for Graphs. These embeddings can be used for downstream learning tasks.
10
+
11
+ ## Model Description
12
+
13
+ RGCN is a GNN made up of RGCNConv from PyTorch Geometric
14
+
15
+
16
+ ## Model Sources
17
+
18
+ <!-- Provide the basic links for the model. -->
19
+
20
+ - **Example:** [Github](https://github.com/pyg-team/pytorch_geometric/blob/master/examples/rgcn.py)
21
+ - **Paper:** [Paper](https://arxiv.org/abs/1703.06103)
22
+ - **Documentation:** [Link](https://pytorch-geometric.readthedocs.io/en/latest/generated/torch_geometric.nn.conv.RGCNConv.html#torch_geometric.nn.conv.RGCNConv)
23
+
24
+ # Uses
25
+
26
+ ## Direct Use
27
+
28
+ This model should be used to learn node embeddings for Graphs. These embeddings can be used for downstream learning tasks.
29
+
30
+
31
+ ## How to Get Started with the Model
32
+
33
+ See example