Changes between Version 10 and Version 11 of BluePrintHumanIntelligenceTasks


Ignore:
Timestamp:
04/05/11 12:20:07 (14 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrintHumanIntelligenceTasks

    v10 v11  
    2020=== Overview ===
    2121
    22 Manage tasks performed on the site, e.g. data entry, cleaning crowdsourced data.
     22Manage tasks performed on the site, e.g. data entry, cleaning crowdsourced data.  This involves:
    2323 * Provide administrator UI for defining tasks.
    2424 * Allow reading data for tasks from specified sources.
    2525 * Provide tasks to users in a web form.
    2626 * Assign tasks to workers based on skills and / or measured performance, or let workers select tasks.
    27  * Compare result of multiple workers on same task.
     27 * Compare results of multiple workers on the same task.
    2828 * Decide when a task is sufficiently complete.
    2929 * Insert tasks with known results as tests.
     
    3333=== Project breakdown ===
    3434
    35 This can be split into several pieces:
     35==== Task definition ====
    3636
    37 ==== Task definition ====
     37Provide 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.
    3855
    3956==== Task assembly and presentation ====