paper-with-me

Papers

Implementing graph neural networks with TensorFlow-Keras

2021-03-07 · Patrick Reiser, Andre Eberhard, Pascal Friederich

Graph neural networks are a versatile machine learning architecture that received a lot of attention recently. In this technical report, we present an implementation of convolution and pooling layers for TensorFlow-Keras models, which allows a seamless and flexible integration into standard Keras layers to set up graph models in a functional way. This implies the usage of mini-batches as the first tensor dimension, which can be realized via the new RaggedTensor class of TensorFlow best suited for graphs. We developed the Keras Graph Convolutional Neural Network Python package kgcnn based on TensorFlow-Keras that provides a set of Keras layers for graph networks which focus on a transparent tensor structure passed between layers and an ease-of-use mindset.

📄 PDF Abstract BibTeX arXiv:2103.04318

Code (1)

aimat-lab/gcnn_keras 공식 구현 tf

Methods 이 논문이 사용한 방법론

Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…

Similar Papers 제목 키워드 기반

Graph Neural Networks in TensorFlow and Keras with Spektral

2020-06-22 · Daniele Grattarola, Cesare Alippi

In this paper we present Spektral, an open-source Python library for building graph neural networks with TensorFlow and the Keras application programming interface. Spektral implements a large set of methods for deep lea…

Deep LearningGeneral ClassificationGraph ClassificationGraph Regression+2

KerasCV and KerasNLP: Vision and Language Power-Ups

2024-05-30 · Matthew Watson, Divyashree Shivakumar Sreepathihalli, Francois Chollet, Martin Gorner 외

We present the Keras domain packages KerasCV and KerasNLP, extensions of the Keras API for Computer Vision and Natural Language Processing workflows, capable of running on either JAX, TensorFlow, or PyTorch. These domain…

TF-GNN: Graph Neural Networks in TensorFlow

2022-07-07 · Oleksandr Ferludin, Arno Eigenwillig, Martin Blais, Dustin Zelle 외

TensorFlow-GNN (TF-GNN) is a scalable library for Graph Neural Networks in TensorFlow. It is designed from the bottom up to support the kinds of rich heterogeneous graph data that occurs in today's information ecosystems…

Graph LearningGraph Sampling

KHNNs: hypercomplex neural networks computations via Keras using TensorFlow and PyTorch

2024-06-29 · Agnieszka Niemczynowicz, Radosław Antoni Kycia

Neural networks used in computations with more advanced algebras than real numbers perform better in some applications. However, there is no general framework for constructing hypercomplex neural networks. We propose a l…

Controlling an Inverted Pendulum with Policy Gradient Methods-A Tutorial

2021-05-17 · Swagat Kumar

This paper provides the details of implementing two important policy gradient methods to solve the inverted pendulum problem. These are namely the Deep Deterministic Policy Gradient (DDPG) and the Proximal Policy Optimiz…

OpenAI GymPolicy Gradient Methods