Tools to prepare linguistic surveys for Amazon Mechanical Turk
Turkserver hosts Amazon Mechanical Turk (AMT)-style surveys on your own server. Does not handle users, payment, etc. Requires an Apache web server with PHP 5.3 or higher.
turkserver
. Copy the turkserver
folder onto your server. The “turkserver” folder name will become part of survey URLs, so change the name of the directory if you like.http://server/.../turkserver/index.php
. This page will check to make sure that turkserver is installed properly.Experiments are generated by simply copying your experimental items and template into the turkserver’s data
directory. Turkserver uses a particular file naming convention. Follow these steps to create an experiment:
<experiment_name>.csv
and copy it into the turkserver’s data
directory.<experiment_name>.html
and copy it into the turkserver’s data
directory.http://server/.../turkserver/<experiment_name>
to participate in your experiment.Results for your experiment will be saved into turkserver’s data
directory, in a file named <experiment_name>.results.csv
. The format of the results is designed to be similar to the AMT’s results files.
Note that there is one there is one additional column added by turkserver which is not included by Turk: TurkServerCookieReliable
. turkserver uses a browser cookie to provide semi-permanent WorkerIds (similar to AMT). If TurkServerCookieReliable
is 1, this means that the participant’s browser had cookies turned on, and therefore this submission’s WorkerId can be trusted. If TurkServerCookieReliable
is 0, this means that that the participant’s browser did not accept the cookie.
When your experiment is complete, you can either remove the <experiment_name>.*
files from the data
directory. Alternatively, you can open the experiment_meta.ini
file, find the section related to your experiment, beginning with [<experiment_name>]
, and set status = "inactive"
.
We suggest that you do not reuse experiment names, or change the experiment data files while an experiment is running.
Some additional settings can be changed by modifying the experiment_meta.ini
file. Find the section of the file related to your experiment, beginning with [<experiment_name>]
. There you can change the title that is shown in the browser title bar, the submission “thank you” text, and whether the experiment is active or not.
Additional flags can be set here too. Currently the only such flag is add_extra_turk_fields = true
which will add a number of blank columns to the results file, so that its output better matches what is produced by AMT.
Contributions are welcome! Bug reports, feedback, documentation improvements, and code changes are all welcome forms of contributions. Thank you (in advance) for making turkserver better for everyone.
turkserver is developed on GitHub. Please submit bug reports and feedback requests on the turkserver issue tracker. Patches can be submitted via pull request.