Git Product home page Git Product logo

Comments (3)

xcjthu avatar xcjthu commented on July 30, 2024

关于第一个词和最后一个词的选取,这是和双向的RNN有关的,选取双向RNN的两个方向的最后一个隐向量来作为边的表示。

from gp-gnn.

bobobe avatar bobobe commented on July 30, 2024

from gp-gnn.

LOUGBERTI avatar LOUGBERTI commented on July 30, 2024

在our_models.py的107行中,您定义# rnn_output shape: batch * MAX_EDGES_PER_GRAPH, max_sent_len, hidden 我设置的是batch_size = 10 所以size = (720, 36, 512) 108行代码 rnn_result = torch.cat([rnn_output[:, -1, :self.p['units1']], rnn_output[:, 0, self.p['units1']:]], dim=1).view(sentence_input.size()[0], MAX_EDGES_PER_GRAPH, -1) 我的理解是: 在108行中, 相当于截取lstm中第35个word的前0到255的embedding,和第0个word的第256到512的embedding。经过tocrh,cat变成维度(720,2,256)最后再view一下变成(10, 72,512 ),view相当于把同一个sentence中的第一个word和最后1个word的各自256维度拼接。这个第一个词后半embedding后最后一个词的前半embedding的拼接。作为graph edge的value 我的问题:如果我理解的没有错,请问这样做有什么依据吗?它对应了论文中哪一条公式?

您好,请问您有实现P@K这个指标吗?我并没有找到这个指标的代码

from gp-gnn.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.