Skip to content
View Yelrose's full-sized avatar
💯
💯
  • Sun Yat-sen University
Block or Report

Block or report Yelrose

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Yelrose/README.md

Hi, I'm Yelrose! 👋

I am a master major in computer science and graduated from Sun Yat-sen University, and currently working at Baidu with a focus on graph neural networks and natural language processing.

My Work

I have worked on many cool projects at Baidu, and have had the opportunity to use my expertise in graph neural networks to develop cutting-edge solutions. Here are a few highlights:

  • Created PGL, a graph neural network framework based on PaddlePaddle. With PGL, you can easily build and train graph neural networks. Check out the sample code below:
import pgl

g = pgl.Graph(num_nodes=num_nodes, edges=edges, node_feat={"h": feature})
g.tensor()

def send_func(src_feat, dst_feat, edge_feat):
    return src_feat

def recv_func(msg):
    return msg.reduce_sum(msg["h"]) 

msg = g.send(send_func, src_feat=g.node_feat)
ret = g.recv(recv_func, msg)

If you are interested in collaborating with me or interning at Baidu, feel free to send me an email at huangzhengjie@baidu.com.

Language

Yelrose's GitHub stats

Pinned

  1. linecache_light linecache_light Public

    A python package that can fast random access any lines in a large file without high memory cost.

    Python 18 5

  2. SicilyCode SicilyCode Public

    http://soj.sysu.edu.cn代码留念

    C++ 3 1

  3. ComicCrawler ComicCrawler Public

    Crawler for comic from (动漫之家) http://manhua.dmzj.com/

    Python 1 1

  4. PGL PGL Public

    Forked from PaddlePaddle/PGL

    Paddle Graph Learning

    Python 2

  5. PaddlePaddle/PGL PaddlePaddle/PGL Public

    Paddle Graph Learning (PGL) is an efficient and flexible graph learning framework based on PaddlePaddle

    Python 1.6k 309