Giter Club home page Giter Club logo

nested-ner-tacl2020's People

Contributors

yahshibu 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

Watchers

 avatar  avatar  avatar

nested-ner-tacl2020's Issues

about Pubmed-shuffle-win-30. bin

Hello, thank you for your open source code, but the file Pubmed-shuffle-win-30. bin cannot be downloaded now, could you please provide a copy?

Deep appreciation for how clear you present your research code

Dear authors,

I was planning on replicating nested NER results from recent literature and when I compare your repository to all others, yours is clearly structured, nicely presented, contains all the necessary instructions, and almost works out of the box.

Seriously, in Computer Science research you would expect to find more of these, yet sadly most repositories don't share these qualities.

As such, this message is not an issue but really just a "good job!" from my side to you :)

Looking forward to seeing more research (and code ;)) from your collaboration.

Cheers,

Jordy

A question about preprocessing and evaluation

Hello,

I ran your parse_ace2005.py to preprocess ACE2005 dataset, and I noticed there are some duplicated entities in the obtained files. For instance, in the train split, I found a sentence like below,

We 'll have a couple of experts come out , so I 'll withhold my comments until then .
0,1 ORG|3,7 PER|3,7 PER|11,12 PER|14,15 PER

where the 3,7 PER appears twice. Is this correct?

And then I checked your evaluation function,

def evaluate(gold_entities: List[List[Tuple[int, int, int]]], pred_entities: List[List[Tuple[int, int, int]]]) \
-> Tuple[int, int, int, int]:
prec_all_num, prec_num, recall_all_num, recall_num = 0, 0, 0, 0
for g_ets, p_ets in zip(gold_entities, pred_entities):
recall_all_num += len(g_ets)
prec_all_num += len(p_ets)
for et in g_ets:
if et in p_ets:
recall_num += 1
for et in p_ets:
if et in g_ets:
prec_num += 1
return prec_all_num, prec_num, recall_all_num, recall_num

seems you do not remove the duplicated entities, so does this have any influence on the final evaluation results?

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.