File size: 16,921 Bytes
fad35ef
1
{"forum": "B1eWbxStPH", "submission_url": "https://openreview.net/forum?id=B1eWbxStPH", "submission_content": {"authorids": ["klicpera@in.tum.de", "grossja@in.tum.de", "guennemann@in.tum.de"], "title": "Directional Message Passing for Molecular Graphs", "authors": ["Johannes Klicpera", "Janek Gro\u00df", "Stephan G\u00fcnnemann"], "pdf": "/pdf/0255ee67aa275932d71e466955039aabc8460e41.pdf", "TL;DR": "Directional message passing incorporates spatial directional information to improve graph neural networks.", "abstract": "Graph neural networks have recently achieved great successes in predicting quantum mechanical properties of molecules. These models represent a molecule as a graph using only the distance between atoms (nodes). They do not, however, consider the spatial direction from one atom to another, despite directional information playing a central role in empirical potentials for molecules, e.g. in angular potentials. To alleviate this limitation we propose directional message passing, in which we embed the messages passed between atoms instead of the atoms themselves. Each message is associated with a direction in coordinate space. These directional message embeddings are rotationally equivariant since the associated directions rotate with the molecule. We propose a message passing scheme analogous to belief propagation, which uses the directional information by transforming messages based on the angle between them. Additionally, we use spherical Bessel functions and spherical harmonics to construct theoretically well-founded, orthogonal representations that achieve better performance than the currently prevalent Gaussian radial basis representations while using fewer than 1/4 of the parameters. We leverage these innovations to construct the directional message passing neural network (DimeNet). DimeNet outperforms previous GNNs on average by 76% on MD17 and by 31% on QM9. Our implementation is available online.", "code": "https://www.daml.in.tum.de/dimenet", "keywords": ["GNN", "Graph neural network", "message passing", "graphs", "equivariance", "molecules"], "paperhash": "klicpera|directional_message_passing_for_molecular_graphs", "_bibtex": "@inproceedings{\nKlicpera2020Directional,\ntitle={Directional Message Passing for Molecular Graphs},\nauthor={Johannes Klicpera and Janek Gro\u00df and Stephan G\u00fcnnemann},\nbooktitle={International Conference on Learning Representations},\nyear={2020},\nurl={https://openreview.net/forum?id=B1eWbxStPH}\n}", "full_presentation_video": "", "original_pdf": "/attachment/e6f5a9535d4de6e35b63d5b01077c3c97b5ba0c2.pdf", "appendix": "", "poster": "", "spotlight_video": "", "slides": ""}, "submission_cdate": 1569439737452, "submission_tcdate": 1569439737452, "submission_tmdate": 1583912052334, "submission_ddate": null, "review_id": ["rJx3xOahYB", "Sklq1fBatH", "H1eUT3mRtS"], "review_url": ["https://openreview.net/forum?id=B1eWbxStPH&noteId=rJx3xOahYB", "https://openreview.net/forum?id=B1eWbxStPH&noteId=Sklq1fBatH", "https://openreview.net/forum?id=B1eWbxStPH&noteId=H1eUT3mRtS"], "review_cdate": [1571768307680, 1571799522379, 1571859646150], "review_tcdate": [1571768307680, 1571799522379, 1571859646150], "review_tmdate": [1572972379784, 1572972379740, 1572972379696], "review_readers": [["everyone"], ["everyone"], ["everyone"]], "review_writers": [["ICLR.cc/2020/Conference/Paper2126/AnonReviewer2"], ["ICLR.cc/2020/Conference/Paper2126/AnonReviewer3"], ["ICLR.cc/2020/Conference/Paper2126/AnonReviewer1"]], "review_reply_count": [{"replyCount": 0}, {"replyCount": 0}, {"replyCount": 0}], "review_replyto": ["B1eWbxStPH", "B1eWbxStPH", "B1eWbxStPH"], "review_content": [{"experience_assessment": "I do not know much about this area.", "rating": "8: Accept", "review_assessment:_thoroughness_in_paper_reading": "I read the paper at least twice and used my best judgement in assessing the paper.", "review_assessment:_checking_correctness_of_experiments": "I assessed the sensibility of the experiments.", "title": "Official Blind Review #2", "review_assessment:_checking_correctness_of_derivations_and_theory": "I assessed the sensibility of the derivations and theory.", "review": "This paper beneficially incorporates directional information into graph\nneural networks for molecular modeling while preserving equivariance.\n\nThis paper is a tour de force of architecture engineering.  Continuous\nequivariance, potential field representation, and bandwidth limited\nbasis functions are synthesized in a compelling manner.\n\nI found the exposition extremely intelligible despite my lack of\nfamiliarity with molecular modeling.\n\nThe contribution is clear, although applicability beyond the specific\ndomain of molecular modeling is possibly limited.  Being continuously\nequivariant with respect to rotations is interesting, but seems to require\nproblems where the input is encoded as a point cloud in a vector space;\nI'm not familiar with such problems.  Nonetheless, the domain of molecular\nmodeling is sufficiently important in isolation.\n\nI recommend acceptance, because the contribution is strong, the writing\nis excellent, the ideas are well-motivated, and the experiments support\nthe empirical claims.\n"}, {"experience_assessment": "I have published in this field for several years.", "rating": "8: Accept", "review_assessment:_thoroughness_in_paper_reading": "I read the paper at least twice and used my best judgement in assessing the paper.", "review_assessment:_checking_correctness_of_experiments": "I assessed the sensibility of the experiments.", "title": "Official Blind Review #3", "review_assessment:_checking_correctness_of_derivations_and_theory": "I assessed the sensibility of the derivations and theory.", "review": "\nThis is a sophisticated paper on predicting molecular properties at atom as well as molecular levels using physics inspired, extended GNN architectures. Two key extensions are provided above and beyond previous GNN models that operated on graphs derived from pairwise distances between atoms. First, the encoding of atom distances for use in neural messages is no longer done in terms of Gaussian radial basis function representations but in terms of spherical Bessel functions. The provide an orthogonal decomposition at resolutions controlled by associated frequencies. The orthogonality is though lost due to the use of an envelop function to ensure differentiability at cutoff distance defining the graph (essential for molecular simulations) but this appears not to affect performance. The second and the primary contribution of the paper, beyond the architecture itself, is the use of directional embeddings of messages where angles are transformed into cosine basis for neural mappings. In other words, the message sent from atom i to j aggregates messages from i's other neighbors in a manner that takes into account the angle formed by i, j, and k's respective atom positions. Since local directions are equivariant with an overall molecular rotation, the message passing architecture in this new representation remains invariant to rotations/translations. The added directional information, embedded in local basis representation, clearly makes the network more powerful (able to distinguish higher order structures). \n\n- the authors suggest that the radial information can be transformed simply by element-wise multiplication while angular information requires more complex transformations in message calculations. Is there a physical insight to this or is this simply an empirical finding?\n\n- there are many layers of transformations introduced from the atom embeddings before reaching the property of interest. Are so many layers really necessary? \n\n- it seems models for QM9 data were trained separately for each different physical target. Is this really necessary? Given the many layers of transformations until the properties are predicted, couldn't the message passing component be largely shared? \n\n- what exactly is the training data for the molecular simulation tests? The description in the paper is insufficient. A separate model is trained for each molecule, presumably based on samples resulting from physical simulations (?). What is provided to the models based on each \"sample\"?\n\n- the ablation studies are helpful to assess the impact of the main differences (directionality, bessel vs Gaussian, node embeddings vs message) though I would wish to see what the degradation effect is on QM9 if one used a shared message passing architecture (just sharing the messages, resulting embeddings could be transformed separately for different predictions). \n\nThere's a recent workshop paper also making use of directional information (local coordinate transformations along a protein backbone chain) in message passing/transformer architectures: Ingraham et al., Generative models for graph-based protein design, ICLR workshop 2019\n\n\n\n\n\n"}, {"experience_assessment": "I have published one or two papers in this area.", "rating": "6: Weak Accept", "review_assessment:_thoroughness_in_paper_reading": "I read the paper at least twice and used my best judgement in assessing the paper.", "review_assessment:_checking_correctness_of_experiments": "I carefully checked the experiments.", "title": "Official Blind Review #1", "review_assessment:_checking_correctness_of_derivations_and_theory": "I assessed the sensibility of the derivations and theory.", "review": "Strength:\n-- The paper is well written and easy to follow\n-- The authors proposed a new approach called directional message passing to model the angles between atoms, which is missing in existing graph neural networks for molecule representation learning\n--  The proposed approach are effective on some targets. \n\nWeakness:\n-- From the point of view of graph neural networks, the novelty of the proposed techniques is marginal\n-- The performance of the proposed method are only better than existing methods on some of the targets. \n\nThis paper studied learning the graph representation of molecules by considering the angles between atoms. The authors proposed a specific type of graph neural network called directional message passing. Experimental results on the QM9 data set prove the effectiveness of the proposed approach over existing sota algorithms such as Schnet for some of the targets. \n\nOverall, the paper studies a very important problem, which aims to learn the representation of molecules. Modeling the angles of atoms is indeed less explored in existing literature. From the view of graph neural networks, the proposed technique is not that new since edge embedding has already been studied in existing literature. But for the technique could be particular useful for molecule representation learning, especially with the BESSEL FUNCTIONS. One question is that the schnet also leverages the coordinates of the atoms, which may also implicitly model the angles between the edges. In terms of the experiments, the proposed approach does not seem that strong, only achieving the best performance on 5 targets out of 12. \n\nOverall, I feel this paper is on the borderline. Now I will give weak accept and will revise my score according to other reviews and comments.  "}], "comment_id": ["B1xQUxXDsH", "HJl0NxmDiH", "r1lvxgXwjH"], "comment_cdate": [1573494859009, 1573494837906, 1573494766755], "comment_tcdate": [1573494859009, 1573494837906, 1573494766755], "comment_tmdate": [1573494859009, 1573494837906, 1573494766755], "comment_readers": [["everyone"], ["everyone"], ["everyone"]], "comment_writers": [["ICLR.cc/2020/Conference/Paper2126/Authors", "ICLR.cc/2020/Conference"], ["ICLR.cc/2020/Conference/Paper2126/Authors", "ICLR.cc/2020/Conference"], ["ICLR.cc/2020/Conference/Paper2126/Authors", "ICLR.cc/2020/Conference"]], "comment_reply_content": [{"replyCount": 0}, {"replyCount": 0}, {"replyCount": 0}], "comment_content": [{"title": "DimeNet beyond molecules", "comment": "As you correctly pointed out, going beyond the graph and incorporating the underlying spatial data is one of the main ideas behind our model. In our work we focus on molecular prediction and leverage the characteristics of this problem. However, many of the ideas we propose in our paper should be applicable to other graphs with underlying geometric data as well, such as meshes in computer vision."}, {"title": "Improved experiments", "comment": "- During most of our model development process we used a single model to jointly predict all 12 targets. We only changed this for the final training runs. We have added the results of multi-target predictions in the updated appendix (both with shared and separate output blocks per target). Using a shared model increases std. MAE by 81%, even when using separate output blocks. Please note that competing models use single-target models as well.\n\n- We have extended the description of the MD17 dataset to incorporate your suggestions.\n\n- The finding that a more complex angular transformation helps while a more complex distance transformation does not is mainly empirical. An intuitive explanation for this might be the fact that a rotation in space is a more complex transformation than a translation (in terms of the required matrix operation).\n\n- We only take over the architectural complexity from the model we are extending upon (PhysNet) and simplified where it was possible without sacrificing performance.\n\n- We have added the suggested workshop paper to the related work section. Note, however, that their method of incorporating orientations requires an explicit order of atoms, which breaks permutation invariance and is therefore only possible for chain-like molecules like proteins."}, {"title": "Performance improvements and directionality", "comment": "Performance improvements: After the submission deadline we noticed that competing models use the raw (non-standardized) data for training. To make the setup more consistent we changed this training detail, which made a surprisingly large difference. We achieved further small improvements by jointly representing interatomic distances and angles in a 2D basis and by increasing the number of interaction blocks from 4 to 6. We\u2019ve updated the description in the paper accordingly (see Sec. 5). We now set the state of the art on 11 out of 12 targets.\n\nDirectionality has not been explored in GNNs: Our proposed directional message embeddings are indeed related to edge embeddings, as we point out in the related work section. However, normal edge embeddings do not incorporate any directional information. By using directional information we essentially go beyond the graph representation and leverage the fact that molecules are in fact embedded in 3D space. Also, note that our model outcompetes a state-of-the-art GNN with edge embeddings (MEGNet, published in April 2019) on average by 71%, while relying solely on message embeddings. MEGNet on the other hand uses a combination of node, edge and graph embeddings.\n\nImplicit angles: Since SchNet only uses the distances between atoms it can not model angles (even implicitly) when it only passes messages between one-hop neighbors (see e.g. limitations of the Weisfeiler-Lehman test and our discussion in Section 4 and Appendix A). Models like SchNet can only use the full geometrical information when they use the full distance matrix, i.e. a fully connected graph and no cutoff."}], "comment_replyto": ["rJx3xOahYB", "Sklq1fBatH", "H1eUT3mRtS"], "comment_url": ["https://openreview.net/forum?id=B1eWbxStPH&noteId=B1xQUxXDsH", "https://openreview.net/forum?id=B1eWbxStPH&noteId=HJl0NxmDiH", "https://openreview.net/forum?id=B1eWbxStPH&noteId=r1lvxgXwjH"], "meta_review_cdate": 1576798741241, "meta_review_tcdate": 1576798741241, "meta_review_tmdate": 1576800894987, "meta_review_ddate ": null, "meta_review_title": "Paper Decision", "meta_review_metareview": "This paper studies Graph Neural Networks for quantum chemistry by incorporating a number of physics-informed innovations into the architecture. In particular, it considers directional edge information while preserving equivariance.\n\nReviewers were in agreement that this is an excellent paper with strong empirical results, great empirical evaluation and clear exposition. Despite some concerns about the limited novelty in terms of GNN methodology ( for instance, directional message passing has appeared in previous GNN papers, see e.g. https://openreview.net/forum?id=H1g0Z3A9Fm , in a different context). Ultimately, the AC believes this is a strong, high quality work that will be of broad interest, and thus recommends acceptance. ", "meta_review_readers": ["everyone"], "meta_review_writers": ["ICLR.cc/2020/Conference/Program_Chairs"], "meta_review_reply_count": {"replyCount": 0}, "meta_review_url": ["https://openreview.net/forum?id=B1eWbxStPH&noteId=2TUEz6rFkb"], "decision": "Accept (Spotlight)"}