Replies: 1 comment 5 replies
-
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
From all data that is collected from twitter, a sample of data is used for annotations. This data will be stored in a SQL database and made available via a REST API. Each post needs to be allocated to possibly more than one annotator.
We need to write a script to allocate posts to annotators in a way that certain conditions are met.
Method Signature
The method signature should be of the form
allocate(posts, annotator)
. The shape ofposts
andannotators
is as follows :Distribution Criteria
k% of the posts need to be annotated by 3 annotators. The rest of the posts (100-k)% will be annotated by one annotator.
Doubts to be clarified
Is it necessary that every annotator's annotations are included in agreement estimation. So at least m% of an annotator's posts must have been annotated by at least one other annotator?
Beta Was this translation helpful? Give feedback.
All reactions