Questions tagged [prodigy]
11 questions
3
votes
1 answer
Run ner.manual in Prodigy on csv file
I am new to Prodigy and haven't fully figured out the paradigm.
For a project, I would like to manually annotate names from texts. My team has developed our own model to recognize the names, so I only want to use the annotated texts (produced with…

Emil
- 1,531
- 3
- 22
- 47
2
votes
1 answer
Prodigy - Using pattern file with model
Can you add a pattern file to a model?
matcher = Matcher(nlp_lg.vocab)
pattern = [{"LOWER": "tumulus"}]
matcher.add("thing", [pattern])
MyText = df.loc[52]["TEXT"]
doc = nlp_lg(MyText )
spacy.displacy.render(doc, style='ent')
It seems to make no…

matt.whitby
- 47
- 10
1
vote
0 answers
Why is my SpaCy model returning an empty dictionary
Here is how I created the model and how I am testing it. For the life of me, I can't figure out why it's returning an empty dictionary without any predictions.
I used prodigy to annotate some data using spans.
python -m prodigy spans.manual…

MrAutoIt
- 785
- 6
- 21
1
vote
1 answer
Convert Prodigy JSONL / Spacy Doc format to CONLL
I have been searching for a while now but haven't found any solution to my problem. For a relation classification task I have annotated several news like text documents with prodigy annotation software. Prodigy outputs the format in a JSONL file…

Jonnyfoka
- 11
- 2
1
vote
1 answer
For integer/dates values annotated using Prodigy, does the spaCy model learn the range of values as well?
I have a prodigy session set up to annotate certain numeric values in a document for age (ranges from 0 to 100). I am only annotating the number. My question is, suppose there is a corrupt value which crept in (age being 1000 or 22.7), will the…

ren1199
- 93
- 2
- 12
1
vote
0 answers
Prodigy + Spacy to train dataset
I would like an example of using Prodigy to train a dataset (text file with some named entities). This file would be in Portuguese. The idea would be to train a model with Prodigy to make notes for the recognition of named entities (I'm not sure how…

Maiquel Oliveira
- 11
- 1
0
votes
0 answers
how to install prodigy in Anaconda prompt
I am getting this error below while installing prodigy in Anaconda prompt for code
pip install prodigy -f \\imslprad01\Area51\Divya\to\wheels
ERROR: Could not install packages due to an OSError: [WinError 5]
Access is…

Divya
- 1
0
votes
1 answer
Bash variable substitution in Prodigy
I want to export the results of a Prodigy tagging session through the command db-out. Prodigy is installed in a Google Compute Engine VM, however, I am not the owner of it and for that reason, what I am attempting, looks like this:
# Assume `test1`…

David Espinosa
- 760
- 7
- 21
0
votes
1 answer
Convert from Prodigy's JSONL format for labeled NER to spaCy's training format?
I am new to Prodigy and spaCy as well as CLI coding. I'd like to use Prodigy to label my data for an NER model, and then use spaCy in python to create models.
Prodigy outputs in SQLite format. SpaCy takes in this other kind of format, not sure what…

Thomas Duquemin
- 62
- 6
0
votes
2 answers
Access Prodigy UI in Kubernetes Pod
I am attempting to create a service for creating training datasets using the Prodigy UI tool. I would like to do this using a Kubernetes cluster which is running in Azure cloud. My Prodigy UI should be reachable on 0.0.0.0:8880 (on the…

C.Nivs
- 12,353
- 2
- 19
- 44
-1
votes
3 answers
Recommended annotation tool to create a Named Entities Recognition data set
I'm new to NLP. I am looking for recommendations for an Annotation tool to create a labeled NER dataset from raw texts.
In details:
I'm trying to create a labeled data set for specific types of Entities in order to develop my own NER project (rule…

zaichyk
- 1