Giter VIP home page Giter VIP logo

extremely-fine-grained-entity-typing's Introduction

Hi there ๐Ÿ‘‹

I am a research scientist at Facebook AI. I work on Natural Language Processing.

xwhan's github stats

extremely-fine-grained-entity-typing's People

Contributors

xwhan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

extremely-fine-grained-entity-typing's Issues

Reran but couldn't get the same high Score on OntoNotes

Hello XWHan, the work you contribute is gorgeous and I am sorry to disturb you, my problem is as follow:
I reran your model on the OntoNotes dataset, but couldn't perceive the result you proposed(which I can only get 65~67 ma_f1 and you submit 77.8 in your paper), I wonder if there is any trick or dataset preprocess I need to do before I rerun?

train time

Can someone please tell how much time was required to complete the training?

I am basically using the following command -
CUDA_VISIBLE_DEVICES=1 python main.py $RUN_ID$ -lstm_type single -model_debug -enhanced_mention -data_setup joint -add_crowd -multitask -gcn

Thanks!

GCNMultiDecoder doesn't use label graph when output_type is "open"

Hi, thanks for sharing code ! I notice that in the forward function of class GCNMultiDecoder in model_util.py

def forward(self, inputs, output_type):
    connection_matrix = self.label_matrix + self.weight * self.affinity
    label_vectors = self.transform(
        connection_matrix.mm(self.linear.weight) / connection_matrix.sum(
            1, keepdim=True))

    if output_type == "open":
        return self.linear(inputs)
    elif output_type == 'wiki':
        return F.linear(
            inputs, label_vectors[:constant.ANSWER_NUM_DICT['wiki'], :],
            self.linear.bias)
    elif output_type == 'kb':
        return F.linear(inputs,
                        label_vectors[:constant.ANSWER_NUM_DICT['kb'], :],
                        self.linear.bias)
    else:
        raise ValueError('Decoder error: output type not one of the valid')

when output_type is "open", the model simply do a linear transform of the input hidden state which means the model doesn't utilize the label correlation information when the label space is "open", is there something wrong here?

Segmentation fault

Thanks for uploading code.
Which version of gluonnlp is used?
Because when importing gluonnlp, I came across segmentation fault.

-> import gluonnlp
(Pdb) unt

Segmentation fault: 11

zsh: segmentation fault (core dumped)  python3 -m pdb main.py

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.