Best way to do Named Entity Recognition in 2024 with GliNER and spaCy - Zero Shot NER

Best way to do Named Entity Recognition in 2024 with GliNER and spaCy - Zero Shot NER

Python Tutorials for Digital Humanities

9 месяцев назад

9,275 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@dorellazara2010
@dorellazara2010 - 20.03.2024 08:44

It’s amazing

Ответить
@urchadezaratiana6781
@urchadezaratiana6781 - 20.03.2024 15:39

gliner-spacy is awesome 💯

Ответить
@adilgun2775
@adilgun2775 - 20.03.2024 16:55

Thanks for the video. One question, Is it possible to make a few shot in addition to zero shot with GliNER (without finetuning)

Ответить
@JoseSanchez-xz5wt
@JoseSanchez-xz5wt - 21.03.2024 00:21

Really cool! Can you make a video on how to further train the LatinCy model? I have a ton of additions to the lemma fixer custom component and I've noticed a few recurring patterns I want to fix generally

Ответить
@ifrasaifi1124
@ifrasaifi1124 - 21.03.2024 14:05

Great explanation! Can we use gliner to extract medicinal plants scientific name and their medicinal effects?

Ответить
@VenkatesanVenkat-fd4hg
@VenkatesanVenkat-fd4hg - 21.03.2024 20:14

Whether NER cannot be achieved using prompt Engg + LLM...? Can you educate on this..

Ответить
@daviddeisadze7037
@daviddeisadze7037 - 22.03.2024 05:41

Great video! What would you do to extract hard skills and soft skills from a resume and job description?

I am thinking entity rulers from spacy and match it but I was wondering what you were thinking. Thanks!

Ответить
@aaroldaaroldson708
@aaroldaaroldson708 - 07.04.2024 10:28

is there anything like this, but for text classification? e.g.: I have a list of labels (topics) and a list of texts. And it has to tell me what topics are mentioned in which text

Ответить
@WalkAloneLive
@WalkAloneLive - 17.04.2024 17:32

I had better results on GLiNER then on OpenAI 3.5 on zero-shot. A lot of False Positive. But at least we have what to filter later, and good is that it works very fast on low CPU needs. Still waiting for few-shot learning example, sure it will help a lot. Anyone tested domain-knowledge way of doing staff?

Ответить
@LexPodgorny
@LexPodgorny - 23.04.2024 03:42

Hi, great video!

You've mentioned "... if you don't have training data". I am assuming that you mean that annotated data is not required, and instead the model relies on unsupervised approach.

If this is correct, than for specialized texts it must rely on embedding training?


Thanks!

Ответить
@lfmtube
@lfmtube - 25.04.2024 07:38

Best video as always. Thanks!

Ответить
@julkul99
@julkul99 - 01.05.2024 11:15

this is very cool! Whats the benefit of using gliner-spacy over just using gliner by itsself?

Ответить
@facundozupel4166
@facundozupel4166 - 17.05.2024 06:20

im starting to use Space for entity extraction from the content of my competitors on the serp for a keyword (I work on SEO) but the entities that extracts are very very weird, leaving behind some more important (I use it in Spanish). Gliner might help?

Ответить
@Noelh86579
@Noelh86579 - 27.05.2024 18:04

does it work on live streaming call?

Ответить
@critical-chris
@critical-chris - 08.06.2024 15:07

Regarding your example with Auschwitz: how exactly did it learn that Auschwitz belongs to concentration_camp type? Is it because your example sentence happened to say exactly that or is that just a coincidence?

Ответить
@NavyaVedachala
@NavyaVedachala - 21.06.2024 05:20

Are there any resources for finetuning GLiNER? The repo for GLiNER is giving me bugs when I attempt to finetune

Ответить
@sid40000
@sid40000 - 04.07.2024 15:21

Great solution! Thank you!

Ответить
@Abishek_B
@Abishek_B - 23.07.2024 19:29

Can we use those as a backend model for flutter app?

Ответить
@emmanuelteitelbaum
@emmanuelteitelbaum - 23.07.2024 22:32

Hi thanks for the informative video! Let's say, like in your book, you had a list of concentration camps that you wanted to feed to the model to improve its accuracy. How would do that? Or would you not do it and just use a more conventional spaCy pipeline?

Ответить
@CMAZZONI
@CMAZZONI - 24.07.2024 07:02

Great video. The only problem is that gliner is not easy to implement in production such as in a remote server or a huggingface endpoint. Has anyone able to make this work?

Ответить
@DaleIsWigging
@DaleIsWigging - 10.09.2024 12:26

Didn't work for me until I added the following four lines of code at the top (below other imports):

from huggingface_hub import login
login(token="hf_INSERT_YOUR_TOKEN_HERE")# replace with your token
import os
os.environ['HF_HUB_DISABLE_SYMLINKS'] = 'true'# Disable symlinks for Hugging Face caching

as I didn't already have "urchade/gliner_base" downloaded on my machine and huggingface wont download without login, for me at least. and the terminal in VSCode in not administrator. Hopefully this helps someone at least get it working.

Ответить
@null4624
@null4624 - 21.09.2024 22:06

From all examples you could pick, you come up with this .. ?

Ответить
@kevon217
@kevon217 - 06.10.2024 19:16

excellent! appreciate the simple, intuitive wrapper. the chunk_size config was clutch.

Ответить
@kk1sh
@kk1sh - 07.10.2024 20:25

Thanks for the solution :)

Ответить
@MF9-h4j
@MF9-h4j - 13.10.2024 08:10

Make your videos less bright. Shining like the sun over here with dark mode on.

Ответить
@HamzaMahmood1261
@HamzaMahmood1261 - 04.12.2024 08:52

thank you for being honest that this is not enough this is just a start point

Ответить
@Daniel-fl4si
@Daniel-fl4si - 07.12.2024 10:27

A dumb question, this model works only for english texts, right?

Ответить