GraphGPS icon indicating copy to clipboard operation
GraphGPS copied to clipboard

Recipe for a General, Powerful, Scalable Graph Transformer

Results 15 GraphGPS issues
Sort by recently updated
recently updated
newest added

Hi, Thank you for your impressive work. I try to reproduce the results of SAN and GatedGCN on PATTERN using GraphGPS framework. The results are all around 89.9 test accuracy,...

Hi @rampasek , Do you have any plan to release your checkpoints for the PCQM4M dataset?

enhancement

Hi, @rampasek , When I perform the installation on prerequisite packages, I got the following error when running `conda install pyg=2.0.4 -c pyg -c conda-forge` ``` (graphgps) root@milton-WS2:/data/code13/GraphGPS# conda install...

Hello, your work is very good and I appreciate it that I learned a lot from your paper and your code. But when I reproduce your experiment using `python main.py...

Hello GraphGPS team, have you tried to run GraphGPS with multiple GPUs? If you have tried, what is the specific operation mode? Thank you.

If users want to use graphGPS as a library in their projects the graphgps master dataloader should not overshadow all other dataloaders. Otherwise they can not create new custom graphgym...

Dear Authors, Hi, I'm a student from UCSD, and as I try to extend on you guys' GPS architecture for one of my projects, I was able to shorten down...

When i tried to run `python main.py --cfg configs/GPS/actor-GPS.yaml wandb.use False`, it came out the following error: ``` register_act('swish', partial(SWISH, inplace=cfg.mem.inplace)) AttributeError: 'NoneType' object has no attribute 'mem' ```

Indeed, the stable sorting was missing on `add_graph_token` in the graphormer encoder. I ran Graphormer on ZINC for 1000 epochs with and without the stable sorting but couldn't find any...

When i set cfg.dataset.task=node, cfg.model.type=gnn , cfg.gnn.stage_type=stack, then it come s to self.post_mp = GNNHead(dim_in=d_in, dim_out=dim_out) in gnn using: ```python class GNNNodeHead(nn.Module): '''Head of GNN, node prediction''' def __init__(self, dim_in,...