Browse Source

Merge pull request #1723 from youichiro/fix_import_dataset

Bug fix: Specify project when retrieving labels in celery task
pull/1727/head
Hiroki Nakayama 2 years ago
committed by GitHub
parent
commit
54b44a59fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      backend/data_import/pipeline/writers.py

2
backend/data_import/pipeline/writers.py

@ -70,7 +70,7 @@ class Examples:
mapping = {}
label_types: List[Type[LabelType]] = [CategoryType, SpanType]
for model in label_types:
for label in model.objects.all():
for label in model.objects.filter(project=project):
mapping[label.text] = label
annotations = list(
itertools.chain.from_iterable(

Loading…
Cancel
Save