├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── NOTICE
├── README.md
├── audio
├── audio-classification-multiselect.liquid.html
├── audio-classification.liquid.html
├── audio-naturalness.liquid.html
├── audio-transcription.liquid.html
├── emotion-detection-audio.liquid.html
├── intent-detection-audio.liquid.html
├── language-detection-audio.liquid.html
└── sentiment-analysis-audio.liquid.html
├── images
├── bounding-box-custom-labels.liquid.html
├── bounding-box-hierarchical.liquid.html
├── bounding-box.liquid.html
├── emotion-detection-image.liquid.html
├── image-classification-multiselect-and-zoomable-image.liquid.html
├── image-classification-multiselect.liquid.html
├── image-classification-with-dropdown-select.liquid.html
├── image-classification.liquid.html
├── image-contains.liquid.html
├── image-moderation.liquid.html
├── image-similarity.liquid.html
├── image-summarization.liquid.html
├── image-tagging-with-basic-layout.liquid.html
├── image-tagging.liquid.html
├── instance-segmentation-custom-values.liquid.html
├── instance-segmentation.liquid.html
├── keypoint-additional-answer-validation.liquid.html
├── keypoint-custom-labels.liquid.html
├── keypoint.liquid.html
├── line.liquid.html
├── multi-image-classification-draggable.liquid.html
├── ocr.liquid.html
├── person-recognition-image.liquid.html
├── polygon.liquid.html
├── polyline.liquid.html
├── rekognition_detect_moderation.liquid.html
├── semantic-segmentation-bounding-box-validation.liquid.html
├── semantic-segmentation-custom-labels.liquid.html
└── semantic-segmentation.liquid.html
├── other
├── blank.liquid.html
├── custom-instructions-width.liquid.html
├── item-equality.liquid.html
├── receipt-transcription.liquid.html
├── search-relevance.liquid.html
├── side-by-side-comparison.liquid.html
├── survey-link.liquid.html
├── website-classification.liquid.html
└── website-collection.liquid.html
├── text
├── collect-utterance.liquid.html
├── conversation-relevance.liquid.html
├── document-classification.liquid.html
├── emotion-detection-tweet.liquid.html
├── emotion-detection.liquid.html
├── fill-in-the-blank.liquid.html
├── fill-out-the-sentence.liquid.html
├── intent-detection.liquid.html
├── key-phrase-extraction.html
├── named-entity-recognition-with-additional-classification.liquid.html
├── named-entity-recognition.liquid.html
├── part-of-speech-tagging.html
├── predict-next-word.liquid.html
├── same-speaker-evaluation.liquid.html
├── semantic-similarity.liquid.html
├── sentiment-analysis-multiple-documents.liquid.html
├── sentiment-analysis-tweet.liquid.html
├── sentiment-analysis.liquid.html
├── text-classification-multiselect.liquid.html
├── text-classification.liquid.html
├── textract_analyze_document.liquid.html
├── translation-quality.liquid.html
└── translation-review-and-correction.liquid.html
└── video
├── emotion-detection-video.liquid.html
├── video-classification-direct.liquid.html
├── video-classification-multiselect-direct.liquid.html
└── video-classification-youtube.liquid.html
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | ## Code of Conduct
2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
4 | opensource-codeofconduct@amazon.com with any additional questions or comments.
5 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing Guidelines
2 |
3 | Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
4 | documentation, we greatly value feedback and contributions from our community.
5 |
6 | Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
7 | information to effectively respond to your bug report or contribution.
8 |
9 |
10 | ## Reporting Bugs/Feature Requests
11 |
12 | We welcome you to use the GitHub issue tracker to report bugs or suggest features.
13 |
14 | When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
15 | reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
16 |
17 | * A reproducible test case or series of steps
18 | * The version of our code being used
19 | * Any modifications you've made relevant to the bug
20 | * Anything unusual about your environment or deployment
21 |
22 |
23 | ## Contributing via Pull Requests
24 | Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
25 |
26 | 1. You are working against the latest source on the *master* branch.
27 | 2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
28 | 3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
29 |
30 | To send us a pull request, please:
31 |
32 | 1. Fork the repository.
33 | 2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
34 | 3. Ensure local tests pass.
35 | 4. Commit to your fork using clear commit messages.
36 | 5. Send us a pull request, answering any default questions in the pull request interface.
37 | 6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
38 |
39 | GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
40 | [creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
41 |
42 |
43 | ## Finding contributions to work on
44 | Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
45 |
46 |
47 | ## Code of Conduct
48 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
49 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
50 | opensource-codeofconduct@amazon.com with any additional questions or comments.
51 |
52 |
53 | ## Security issue notifications
54 | If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55 |
56 |
57 | ## Licensing
58 |
59 | See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
60 |
61 | We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
62 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
--------------------------------------------------------------------------------
/NOTICE:
--------------------------------------------------------------------------------
1 | Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Amazon Augmented AI Sample Task UIs
2 |
3 | This repository contains sample task UIs for [Amazon Augmented AI (A2I)](https://aws.amazon.com/augmented-ai/). It contains subdirectories by use case (audio, images, text, video, other).
4 |
5 | For additional task UI resources, please refer to the official documentation [here](https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-instructions-overview.html) and [here](https://docs.aws.amazon.com/sagemaker/latest/dg/sms-ui-template-reference.html).
6 |
7 | Amazon Augmented AI (Amazon A2I) makes it easy to build the workflows required for human review of ML predictions. Amazon A2I brings human review to all developers, removing the undifferentiated heavy lifting associated with building human review systems or managing large numbers of human reviewers.
8 |
9 | ## License Summary
10 |
11 | This sample code is made available under the MIT-0 license. See the LICENSE file.
12 |
--------------------------------------------------------------------------------
/audio/audio-classification-multiselect.liquid.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Positive sentiment include: joy, excitement, delight Negative sentiment include: anger, sarcasm, anxiety Neutral: neither positive or negative, such as stating a fact N/A: when the text cannot be understood Choose the sentiment(s) expressed by the audio. Positive sentiment include: joy, excitement, delight Negative sentiment include: anger, sarcasm, anxiety Neutral: neither positive or negative, such as stating a fact N/A: when the text cannot be understood When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
Choose the primary sentiment that is expressed by the audio.
26 |Listen to these examples to get an idea of how to rate:
17 |Excellent - Completely natural speech - audio sample 1
18 |Good - Mostly natural speech - audio sample 2
19 |Fair - Equally natural and unnatural speech - audio sample 3
20 |Poor - Mostly unnatural speech - audio sample 4
21 |Bad - Completely unnatural speech - audio sample 5
Listen to the sample of computer generated speech and assess the quality of the audio based on how close it is to natural speech.
25 | For better results, wear headphones and work in a quiet environment. 26 |Transcribe the audio
10 |Ignore "umms", "hmms", "uhs" and other non-textual phrases
11 |Select the primary emotion that's expressed in the audio clip.
18 |If there are multiple emotions expressed, use your judgement and choose the one that's is the strongest of the emotions.
19 |Select the primary emotion that's expressed in the audio clip.
23 |Select the most relevant intention expressed by the audio clip.
18 |If you think there are multiple relevant intentions expressed, use your judgment to choose the one that is most relevant.
19 |Select the language being spoken in this audio clip.
18 |Positive sentiment include: joy, excitement, delight
18 |Negative sentiment include: anger, sarcasm, anxiety
19 |Neutral: neither positive or negative, such as stating a fact
20 |N/A: when the text cannot be understood
21 |When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
od tempor incididunt ut labore et dolore magna aliqua. 22 |Choose the primary sentiment that is expressed by the audio.
26 |Use the bounding box tool to draw boxes around the requested target of interest:
12 |Select the primary emotion that's expressed in the image.
12 |If there are multiple emotions expressed, use your judgement and choose the one that's is the strongest of the emotions.
13 |Select the primary emotion that's expressed in the image.
17 |Read the task carefully and inspect the image.
13 |Choose the appropriate label(s) that best suits the image.
14 |Read the task carefully and inspect the image.
18 |Choose the appropriate label that best suits the image.
19 |If more than one label applies to the image, select multiple labels.
13 |If no labels apply, select None of the above
14 |Read the task carefully and inspect the image.
18 |Choose the appropriate label(s) that best suit the image.
19 |14 | Select the correct label category 15 |
16 |Read the task carefully and inspect the image.
12 |Choose the appropriate label that best suits the image.
13 |Read the task carefully and inspect the image.
17 |Choose the appropriate label that best suits the image.
18 |Intructions for determining if the image contains the object:
13 |Determine if there is offensive content in this image
13 |15 | Please indicate how similar the two images are on a scale from 1 to 5, where 1 indicates that the images are not similar at all and 5 indicates that the image are highly similar. 16 |
17 |Write a short sentence that summarize the contents of an image.
7 |Imagine that you are describing an image to a friend or tagging it for a news website. Provide a sentence that describes it.
10 |Use punctuatation and don't mention that you're describing an image.
11 |15 | A two-way highway running surrounded by trees with lots of cars and a gas station on the right. 16 |
17 |21 | Don't mention that you're describing an image: 22 | In this image, we see a highway. 23 |
24 |28 | Be specific: 29 | An outdoor scene with a city in the background. 30 |
31 |Instructions: Given an image, write a sentence summarizing what it shows
34 |Use punctuatation and don't mention that you're describing an image.
35 |View the instructions for detailed instructions and examples.
36 |Given an image, write three words or short phrases that summarize its contents.
7 |Imagine that you are describing an image to a friend or tagging it for a news website. Provide three specific words or short phrases that describe it.
10 |14 |
24 | These are not specific enough: 25 |
Instructions: Given an image, write three words or short phrases that summarize its contents.
34 |If someone were to see these three words or phrases, they should understand the subject and context of the image, as well as any important actions.
35 |View the instructions for detailed instructions and examples.
36 |Use the tools to label all instances of the requested items in the image
20 |Use the keypoint tool to place a point on the requested target(s) of interest:
12 |Read the task carefully and inspect the image.
12 |Choose the appropriate label that best suits the image.
13 |Draw a line on each objects that the label applies to.
14 |Read the task carefully and inspect the image.
18 |Choose the appropriate label that best suits the image. 19 |
Draw a line along each object that the image applies to. 20 | Make sure that the line does not extend beyond the boundaries 21 | of the object. 22 |
23 |Each line is defined by a starting and ending point. Carefully 24 | place the starting and ending points on the boundaries of the object.
25 |31 | Identify which photos are of the same people, and group them by dragging and dropping them onto the bottom. 32 |
33 | 34 |
14 | Instructions: Do you recognize who this person is?
Help us to tag him or her
15 |
Draw a polygon around each of the requested target(s) of interest
24 |Make the polygon tight around the object
25 |Read the task carefully and inspect the image.
13 |Choose the appropriate label that best suits the image.
14 |Draw a polyline around the boundaries of all objects 15 | that the label applies to.
16 |Make sure that the polyline fits tightly around the boundary 17 | of the object.
18 |Read the task carefully and inspect the image.
22 |Review the tool guide to learn how to use the polyline tool.
23 |Choose the appropriate label that best suits the image.
24 |To draw a polyline, select a label that applies to an object of interest 25 | and add a single point to the photo by clicking on that point. Continue to 26 | draw the polyline around the object by adding additional points 27 | around the object boundary.
28 |Review the image and choose all applicable categories. 24 | If no categories apply, choose None. 25 | 26 | Nudity 27 | Visuals depicting nude male or female person or persons 28 | 29 | Graphic Male Nudity 30 | Visuals depicting full frontal male nudity, often close ups 31 | 32 | Graphic Female Nudity 33 | Visuals depicting full frontal female nudity, often close ups 34 | 35 | Sexual Activity 36 | Visuals depicting various types of explicit sexual activities and pornography 37 | 38 | Illustrated Explicit Nudity 39 | Visuals depicting animated or drawn sexual activity, nudity or pornography 40 | 41 | Adult Toys 42 | Visuals depicting adult toys, often in a marketing context 43 | 44 | Female Swimwear or Underwear 45 | Visuals depicting female person wearing only swimwear or underwear 46 | 47 | Male Swimwear Or Underwear 48 | Visuals depicting male person wearing only swimwear or underwear 49 | 50 | Barechested Male 51 | Visuals depicting topless males 52 | 53 | Partial Nudity 54 | Visuals depicting covered up nudity, for example using hands or pose 55 | 56 | Sexual Situations 57 | Visuals depicting passionate kissing and embracing of a sexual nature 58 | 59 | Revealing Clothes 60 | Visuals depicting revealing clothes and poses, such as deep cut dresses 61 | 62 | Graphic Violence or Gore 63 | Visuals depicting prominent blood or bloody injuries 64 | 65 | Physical Violence 66 | Visuals depicting violent physical assault, such as kicking or punching 67 | 68 | Weapon Violence 69 | Visuals depicting violence using weapons like firearms or blades, such as shooting 70 | 71 | Weapons 72 | Visuals depicting weapons like firearms and blades 73 | 74 | Self Injury 75 | Visuals depicting self-inflicted cutting on the body, typically in distinctive patterns using sharp objects 76 | 77 | Emaciated Bodies 78 | Visuals depicting extremely malnourished human bodies 79 | 80 | Corpses 81 | Visuals depicting human dead bodies 82 | 83 | Hanging 84 | Visuals depicting death by hanging
85 | 86 | Air Crash 87 | Visuals depicting air crashes 88 | 89 | Explosions and Blasts 90 | Visuals depicting blasts and explosions 91 | 92 | Middle Finger 93 | Visuals depicting a person showing the middle finger as a rude gesture 94 | 95 | Drug Products 96 | Visuals depicting drug products like joints or marijuana 97 | 98 | Drug Use 99 | Visuals depicting drug use, for example, snorting drug powders 100 | 101 | Pills 102 | Visuals depicting pills of any kind 103 | 104 | Drug Paraphernalia 105 | Visuals depicting drug paraphernalia like bongs and vaporizers 106 | 107 | Tobacco Products 108 | Visuals depicting tobacco products like cigarettes and e-cigarette devices 109 | 110 | Smoking 111 | Visuals depicting a person or persons smoking 112 | 113 | Drinking 114 | Visuals depicting a person or persons drinking alcoholic beverages 115 | 116 | Alcoholic Beverages 117 | Visuals depicting bottles or containers of alcoholic beverages 118 | 119 | Gambling 120 | Visuals depicting gambling, such as slot machines or casinos 121 | 122 | Nazi Party 123 | Visuals depicting Nazi party symbols, such as the Nazi Swastika 124 | 125 | White Supremacy 126 | Visuals depicting white supremacy symbols, such as the Confederate flag 127 | 128 | Extremist 129 | Visuals depicting flags and emblems of extremist organizations 130 | 131 |Use the tools to label the requested items in the image
20 |Read the task carefully and inspect the video.
22 |Choose the appropriate label that best suits the video.
23 |Read the task carefully and inspect the video.
26 |Choose the appropriate label that best suits the video.
27 |Read the task carefully and inspect the items.
30 |Select whether the two items are the same.
31 |If you're not sure, select Cannot Determine.
32 |Title: {{ task.input.title }}
11 | 12 |
13 |
14 |
If someone searched for {{ task.input.searchText }}, would this item be relevant to them?
18 |Note that related toys/decorations/themed items count as 'Yes'.
30 |Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
35 |Nulla facilisi morbi tempus iaculis urna. Orci dapibus ultrices in iaculis nunc sed augue lacus.
40 | 41 | 42 | 43 |Ultrices vitae auctor eu augue ut. Pellentesque massa placerat duis ultricies lacus sed turpis tincidunt id.
45 | 46 |Which do you agree with?
50 |Why did you choose this answer?
56 |Open the link below to complete the survey. At the end of the survey, you will receive a code to paste into the box below to receive credit for taking our survey.
5 | 6 |Make sure to leave this window open as you complete the survey. When you are finished, you will return to this page to paste the code into the box.
7 | 8 |9 | Survey Link: 10 | 11 | {{ task.input.surveyLink }} 12 |
13 |
14 | Provide the survey code here:
15 |
Read the website carefully.
15 |Choose the appropriate category that best suits the company.
16 |Do additional research on the web if you're not sure.
17 |Find the official website for: {{ task.input.company }}
5 |Do not give Yelp pages, LinkedIn pages, etc.
6 |Include the http:// prefix from the website
7 |Collect utterances for intent
7 |Given a context and an intent, write how you would express the intent using natural language. Don't try to be overly formal, simply write what you would say if you were in the given situation.
12 |You bought a pair of shoes online but they don't fit
17 | 18 |You want to try to return the shoes via an online customer service chat bot
20 | 21 |I would like to return a pair of shoes
23 |You bought a pair of shoes online but they don't fit
28 | 29 |You want to try to return the shoes via an online customer service chat bot
31 | 32 |Hi, I'm trying to buy a plane ticket for tomorrow morning and your website isn't working
34 |You bought a pair of shoes online but they don't fit
39 | 40 |You want to try to return the shoes via an online customer service chat bot
42 | 43 |Don't fit
45 |Write what you would say in the given situation:
50 |Context: {{ task.input.context }}
51 |Intent: {{ task.input.intent }}
52 | 53 |Read the task carefully and inspect the document.
15 |Choose the appropriate label that best suits the document.
16 |11 | {{ task.input.taskObject }} 12 |13 | 14 |
Select the primary emotion that's expressed in the tweet.
18 |If there are multiple emotions expressed, use your judgement and choose the one that's is the strongest of the emotions.
19 |Select the primary emotion the tweet is expressing.
23 |Select the primary emotion that's expressed in the audio clip.
15 |If there are multiple emotions expressed, use your judgement and choose the one that's is the strongest of the emotions.
16 |Select the primary emotion the text is expressing.
20 |Instructions: Given a block of text, fill in the blank with the word you'd expect to be there
5 |Block of text continue: {{ task.input.textBeginning }} ____ {{ task.input.textEnd }}
6 |Instructions: Given a piece of text, fill out the beginning and start of a sentence you'd expect to surround it
5 |Piece of text to surround: ___ {{ task.input.text }} ___
6 |Select the most relevant intention expressed by the text.
15 |Example: I would like to return a pair of shoes
17 |Intent: Return
18 |In the provided text, identify the key phrases. For example, the key phases are highlighted in the following:
17 |"Excellent bag and 18 | fast shipping! Bag 19 | arrived right on time and 20 | packaged very well. The bag itself is 21 | good quality! Was a bit 22 | skeptical ordering this bag off amazon but it's 23 | 100% authentic and the 24 | best price!"
25 |One way to help identify key phases is imagining what a word cloud would look like for this text.
26 |The following text may contain a noun, verb, article, adjective, preposition, pronoun, adverb, conjunction, and interjection. Please select and label all of the them.
19 |If you have trouble choosing a category, try searching the web to find out more information.
20 |To refresh your knowledge of parts of speech, please read the article on Wikipedia.
21 |Instructions: Pretend that you are a computer's auto-complete and you are predicting what word a person would type next
5 |Sentence to continue: {{ task.input.taskObject }} ____
6 |Listen to the audio samples. Determine whether the samples sound like they are produced by the same speaker. Focus on identifying the voice for the corresponding speaker identity rather than the content.
20 |For better results, wear headphones and work in a quiet environment.
21 |You have 4 options to indicate how sure you are of your decision of whether the two speech samples are spoken by the same speaker:
22 |Text 1: {{ task.input.text1 }}
11 |Text 2: {{ task.input.text2 }}
12 |10 | {{ task.input.taskObject }} 11 |12 | 13 |
Positive sentiment include: joy, excitement, delight
17 |Negative sentiment include: anger, sarcasm, anxiety
18 |Neutral: neither positive or negative, such as stating a fact
19 |N/A: when the text cannot be understood
20 |When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
21 |Choose the primary sentiment that is expressed by the Tweet, considering both the text and the image (if any).
25 |Positive sentiment include: joy, excitement, delight
26 |Negative sentiment include: anger, sarcasm, anxiety
27 |Neutral: neither positive or negative, such as stating a fact
28 |N/A: when the content cannot be understood
29 |When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
30 |Positive sentiment include: joy, excitement, delight
15 |Negative sentiment include: anger, sarcasm, anxiety
16 |Neutral: neither positive or negative, such as stating a fact
17 |N/A: when the text cannot be understood
18 |When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
19 |Positive sentiment include: joy, excitement, delight
16 |Negative sentiment include: anger, sarcasm, anxiety
17 |Neutral: neither positive or negative, such as stating a fact
18 |N/A: when the text cannot be understood
19 |When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
20 |Positive sentiment include: joy, excitement, delight
15 |Negative sentiment include: anger, sarcasm, anxiety
16 |Neutral: neither positive or negative, such as stating a fact
17 |N/A: when the text cannot be understood
18 |When the sentiment is mixed, such as both joy and sadness, use your judgment to choose the stronger emotion.
19 |Click on a key-value block to highlight the corresponding key-value pair in the document.
25 |
26 | If it is a valid key-value pair, review the content for the value. If the content is incorrect, correct it.
27 |
28 | If the text of the value is incorrect, correct it.
29 |
30 |
31 | If a wrong value is identified, correct it.
32 |
33 |
34 | If it is not a valid key-value relationship, choose No.
35 |
36 |
37 | If you can’t find the key in the document, choose Key not found.
38 |
39 |
40 | If the content of a field is empty, choose Value is blank.
41 |
42 |
43 | Examples
44 | The key and value are often displayed next or below to each other.
45 |
46 | For example, key and value displayed in one line.
47 |
48 |
49 | For example, key and value displayed in two lines.
50 |
51 |
52 | If the content of the value has multiple lines, enter all the text without a line break. Include all value text, even if it extends beyond the highlighted box.
53 |
Read the two pieces of text below and use the sliders below indicate how much you agree with the statements (1 = Strongly disagree, 5 = Strongly agree)
5 |Source Text ({{ task.input.original.language }}): {{ task.input.original.text }}
6 |Translated Text ({{ task.input.translation.language }}): {{ task.input.translation.text }}
7 |8 |
1) The second text adequately expresses the meaning of the first text in {{ task.input.translation.language }}
11 |2) The second text is fluent {{ task.input.translation.language }}
15 |The source document has been broken up into sentences and each sentence has been translated using Amazon Translate. The source text, along with their 16 | machine generated translation is shown in the table. Please review the translated text and make changes so it reads more like something a person would write rather than an automated translation. 17 | Please do this for all the sentences. Once done, click on Submit to finish the job. The system will reassemble the edited text to match the original source formatting. 18 |
19 | 20 |Please review the below translations and make corrections and improvements. Your corrections should:
24 |25 |
Sentence | 35 |Original ({{ task.input.SourceLanguage }}) | 36 |Translation ({{ task.input.TargetLanguage }}) | 37 |
---|---|---|
{{ forloop.index }} | 43 |{{ pair.originalText }} | 44 |
45 | |
50 |
Select the primary emotion that's expressed in the video clip.
18 |If there are multiple emotions expressed, use your judgement and choose the one that's is the strongest of the emotions.
19 |Select the primary emotion that's expressed in the video clip.
23 |Read the task carefully and inspect the video.
17 |Choose the appropriate label that best suits the video.
18 |Read the task carefully and inspect the video.
21 |Choose the appropriate label that best suits the video.
22 |Read the task carefully and inspect the video.
18 |Choose the appropriate label(s) that best suit the video.
19 |Read the task carefully and inspect the video.
22 |Choose the appropriate label(s) that best suit the video.
23 |Read the task carefully and inspect the video.
15 |Choose the appropriate label that best suits the video.
16 |Read the task carefully and inspect the video.
19 |Choose the appropriate label that best suits the video.
20 |