You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line ~234 of labelinator app views.py, I am using a distinct=True
# Get the concise annotations
annotations = Annotation.objects.filter(reports__report_id=report.report_id).annotate(Count('annotation', distinct=True))
annotations = summarize_annotations(annotations)
and we need to make sure this preserves counts for distinct annotations (meaning across users).
The text was updated successfully, but these errors were encountered:
vsoch
changed the title
testing: will need to test if annotation counts (reported) for multiple users is accurate
[annotations] add view to show a user his/her summary of annotations (per set)
Dec 20, 2016
line ~234 of labelinator app views.py, I am using a distinct=True
and we need to make sure this preserves counts for distinct annotations (meaning across users).
The text was updated successfully, but these errors were encountered: