Git Product home page Git Product logo

Comments (3)

stefan-it avatar stefan-it commented on May 18, 2024 2

Really cool! I have actually worked on a small prototype that mimics the output of the current token classification models:

from flair.data import Sentence
from flair.models import SequenceTagger

tagger: SequenceTagger = SequenceTagger.load("dbmdz/flair-historic-ner-onb")

sentence: Sentence = Sentence(input_text)

# Also show scores for recognized NEs
tagger.predict(sentence, all_tag_prob=True, label_name="predicted")

response = []

entities = []

for span in sentence.get_spans("predicted"):
    idx = [token.idx for token in span.tokens]

    current_entity = {
        "entity_group": span.tag,
        "word": span.to_original_text(),
        "start": idx[0] - 1, # Because Flair starts at 1
        "end": idx[-1],
        "score": span.score
    }

    entities.append(current_entity)


response = {
    "entities": entities
}

return jsonify(response)

Bookmark for token classification API: https://api-inference.huggingface.co/docs/python/html/detailed_parameters.html#named-entity-recognition-ner-task

from api-inference-community.

julien-c avatar julien-c commented on May 18, 2024

Thanks! Yeah it looks pretty easy!

We'll discuss internally to figure out if we would implement this here or directly in our api-inference repo (which hosts the transformers model inference)

from api-inference-community.

julien-c avatar julien-c commented on May 18, 2024

was implemented in our api-inference repo (@Narsil @n1t0) so closing this here

from api-inference-community.

Related Issues (20)

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.