GLiNER: Easiest way to do Entity Extraction in 2024?

Поделиться
HTML-код
  • Опубликовано: 6 сен 2024

Комментарии • 15

  • @arielwertlen6709
    @arielwertlen6709 5 месяцев назад +2

    Very cool discovery, thank you! I like the flexibility of the 0-shot approach. Not to mention almost all trained NER models online for CV analysis all seem to use the same job posting data set from 2018.

  • @davidcu629
    @davidcu629 3 месяца назад

    Thank you so much

  • @kymerawand
    @kymerawand 5 месяцев назад

    Now we only need to get the relationships between the entities :) great video Mark! Did you try it with bigger text sizes like a larger wikipedia article or a book?

    • @learndatawithmark
      @learndatawithmark  5 месяцев назад

      Now I wonder where we could store those entities :D
      I think it kinda maxes out at around 2,000 characters. But I suppose if you would chop it up into chunks and run it again it's gonna work?

  • @user-hj4wr1yh6g
    @user-hj4wr1yh6g 5 месяцев назад

    Great video, thanks! could you please help me with loading the model from a local path?
    using path with local_files_only=True failed for me.

  • @aaroldaaroldson708
    @aaroldaaroldson708 5 месяцев назад

    is there something like this for text classification? I have a pdf and a list of topics such as [profit, environment, competitors…].
    I need to classify each page in my 500 paged pdf file to know which topics been discussed in each page

    • @learndatawithmark
      @learndatawithmark  4 месяца назад

      It might be worth looking at the LLMware models - github.com/llmware-ai/llmware/tree/main/examples/SLIM-Agents
      I did a video about a few of them here - ruclips.net/video/Lb4_z-UI80A/видео.html

  • @AdrienSales
    @AdrienSales 5 месяцев назад

    Hey Mark, as always, short and powerful demo : how does it handle i8n ? I would like to play with some french data ;-p

    • @learndatawithmark
      @learndatawithmark  5 месяцев назад +1

      Good question. I haven't tried that yet!

    • @1006dkm
      @1006dkm День назад

      There’s a multilingual version as well

  • @CMAZZONI
    @CMAZZONI Месяц назад

    Has anyone use this via a cloud endpoint? Its so custom that is not even compatible with hugging face cloud endpoint

    • @learndatawithmark
      @learndatawithmark  29 дней назад

      I haven't tried it yet, but we could deploy it to something like Beam.Cloud? www.beam.cloud/

  • @korigamik
    @korigamik 5 месяцев назад

    Can you explain what you use to run jupyter on the terminal?

    • @learndatawithmark
      @learndatawithmark  5 месяцев назад

      Hey, yep. I'm using this - pypi.org/project/ipython/
      And then for colouring when I print stuff I'm using this - rich.readthedocs.io/en/stable/console.html

    • @kymerawand
      @kymerawand 5 месяцев назад

      @@learndatawithmark I guess that's worth another python video :)