Changes between Version 10 and Version 11 of BluePrintHumanIntelligenceTasks
- Timestamp:
- 04/05/11 12:20:07 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrintHumanIntelligenceTasks
v10 v11 20 20 === Overview === 21 21 22 Manage tasks performed on the site, e.g. data entry, cleaning crowdsourced data. 22 Manage tasks performed on the site, e.g. data entry, cleaning crowdsourced data. This involves: 23 23 * Provide administrator UI for defining tasks. 24 24 * Allow reading data for tasks from specified sources. 25 25 * Provide tasks to users in a web form. 26 26 * Assign tasks to workers based on skills and / or measured performance, or let workers select tasks. 27 * Compare result of multiple workers onsame task.27 * Compare results of multiple workers on the same task. 28 28 * Decide when a task is sufficiently complete. 29 29 * Insert tasks with known results as tests. … … 33 33 === Project breakdown === 34 34 35 This can be split into several pieces: 35 ==== Task definition ==== 36 36 37 ==== Task definition ==== 37 Provide a web form or wizard that allows the administrator to: 38 * Specify the task input data source. 39 * Note: The actual connection to the data source, and the process of reading from it, should be isolated. 40 This is not specific to this project -- reading from a remote feed can be used for many purposes. 41 Here, we could assume that the data is being placed in one or more database tables, or in files on 42 the server. 43 * Most commonly each task will operate on one item of data -- assume this to start. 44 * Provide instructions for workers. 45 * Specify what worker skills are needed. 46 * Specify the format of the results, e.g.: 47 * Text input. 48 * Radio buttons or exclusive select from a list. 49 * Multi-select boxes or list. 50 * Combo-box, i.e. either exclusive or multi-select, but also allow adding a new option. 51 * Selection of locations on a map. 52 * Advanced setup: 53 * Allow specifying form layout. 54 * Multiple data sources. 38 55 39 56 ==== Task assembly and presentation ====