├── 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 | 4 | 10 | 11 | 15 | 16 | 17 | 18 |

Positive sentiment include: joy, excitement, delight

19 |

Negative sentiment include: anger, sarcasm, anxiety

20 |

Neutral: neither positive or negative, such as stating a fact

21 |

N/A: when the text cannot be understood

22 |
23 | 24 | 25 |

Choose the sentiment(s) expressed by the audio.

26 |
27 |
28 |
29 | -------------------------------------------------------------------------------- /audio/audio-classification.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 16 | 17 |

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 |
23 | 24 | 25 |

Choose the primary sentiment that is expressed by the audio.

26 |
27 |
28 |
-------------------------------------------------------------------------------- /audio/audio-naturalness.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 16 |

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

22 |
23 | 24 |

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 |
27 |
28 |
-------------------------------------------------------------------------------- /audio/audio-transcription.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 |

Instructions

9 |

Transcribe the audio

10 |

Ignore "umms", "hmms", "uhs" and other non-textual phrases

11 | 12 |
-------------------------------------------------------------------------------- /audio/emotion-detection-audio.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 16 | 17 |

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 |
20 | 21 | 22 |

Select the primary emotion that's expressed in the audio clip.

23 |
24 |
25 |
-------------------------------------------------------------------------------- /audio/intent-detection-audio.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 16 | 17 |

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 |
20 | 21 | 22 | Pick the most relevant intention expressed by the audio clip 23 | 24 |
25 |
-------------------------------------------------------------------------------- /audio/language-detection-audio.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 16 | 17 |

Select the language being spoken in this audio clip.

18 |
19 | 20 | 21 | Select the language being spoken in this audio clip. 22 | 23 |
24 |
25 | -------------------------------------------------------------------------------- /audio/sentiment-analysis-audio.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 16 | 17 |

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 |
23 | 24 | 25 |

Choose the primary sentiment that is expressed by the audio.

26 |
27 |
28 |
-------------------------------------------------------------------------------- /images/bounding-box-custom-labels.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | Describe your task here. 13 | 14 |


15 |

16 | Add new label 17 |

18 | 19 | 20 |
21 | Add 22 | 23 |


24 |

25 | Manage labels 26 |

27 |
28 |
29 | 30 | 31 | Describe your task in more detail here. 32 | 33 |
34 |
35 | 36 | -------------------------------------------------------------------------------- /images/bounding-box-hierarchical.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 | 20 | 21 | Describe your task here. 22 | 23 |



24 | 25 |

26 | Add new instance 27 |

28 | Add a new instance of: 29 | 30 | 31 | 35 |
36 | Add 37 |
38 |
39 | 40 | 41 | 42 | 43 | 44 | 45 |
46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /images/bounding-box.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

Use the bounding box tool to draw boxes around the requested target of interest:

12 |
    13 |
  1. Draw a rectangle using your mouse over each instance of the target.
  2. 14 |
  3. Make sure the box does not cut into the target, leave a 2 - 3 pixel margin
  4. 15 |
  5. 16 | When targets are overlapping, draw a box around each object, 17 | include all contiguous parts of the target in the box. 18 | Do not include parts that are completely overlapped by another object. 19 |
  6. 20 |
  7. 21 | Do not include parts of the target that cannot be seen, 22 | even though you think you can interpolate the whole shape of the target. 23 |
  8. 24 |
  9. Avoid shadows, they're not considered as a part of the target.
  10. 25 |
  11. If the target goes off the screen, label up to the edge of the image.
  12. 26 |
27 |
28 | 29 | 30 | Draw boxes around the requested target of interest. 31 | 32 |
33 |
-------------------------------------------------------------------------------- /images/emotion-detection-image.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

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 |
14 | 15 | 16 |

Select the primary emotion that's expressed in the image.

17 |
18 |
19 |
-------------------------------------------------------------------------------- /images/image-classification-multiselect-and-zoomable-image.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 |

Read the task carefully and inspect the image.

13 |

Choose the appropriate label(s) that best suits the image.

14 |
15 | 16 | 17 |

Read the task carefully and inspect the image.

18 |

Choose the appropriate label that best suits the image.

19 |
20 |
21 |
-------------------------------------------------------------------------------- /images/image-classification-multiselect.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 |

If more than one label applies to the image, select multiple labels.

13 |

If no labels apply, select None of the above

14 |
15 | 16 | 17 |

Read the task carefully and inspect the image.

18 |

Choose the appropriate label(s) that best suit the image.

19 |
20 |
21 |
-------------------------------------------------------------------------------- /images/image-classification-with-dropdown-select.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Select the correct category from the dropdown. Include useful examples here as HTML/images. 6 | 7 | 8 | 9 | Include addtional detailed instructions and examples here as HTML/images. 10 | 11 | 12 | 13 |

14 | Select the correct label category 15 |

16 |
17 | 26 |
27 |
-------------------------------------------------------------------------------- /images/image-classification.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

Read the task carefully and inspect the image.

12 |

Choose the appropriate label that best suits the image.

13 |
14 | 15 | 16 |

Read the task carefully and inspect the image.

17 |

Choose the appropriate label that best suits the image.

18 |
19 |
20 |
-------------------------------------------------------------------------------- /images/image-contains.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

Detailed instructions

12 |

Intructions for determining if the image contains the object:

13 |
    14 |
  1. Begin by carefully examining the entire image
  2. 15 |
  3. Next determine if the object of interest occurs in the image
  4. 16 |
  5. If it the object exists in the image, select that option; otherwise, indicate it does not
  6. 17 |
18 |
19 | 20 | 21 | Does this image contain the object of interest? 22 | 23 |
24 |
-------------------------------------------------------------------------------- /images/image-moderation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

Detailed Instructions

12 |

Determine if there is offensive content in this image

13 |
    14 |
  1. Begin by carefully examining the entire image
  2. 15 |
  3. Next determine if the image contains any offensive content
  4. 16 |
  5. If the image contains offensive content, select the appropriate category: (1) Violence, (2) Nudity, (3) Highly Sexual Content, (4) Offensive Gestures, (5) Profanity, (6) Illegal Drugs, or (7) Other
  6. 17 |
  7. If it does not contain offensive content, indicate it is a safe image
  8. 18 |
19 |
20 | 21 | Determine if there is sensitive content in this image 22 | 23 |
24 |
-------------------------------------------------------------------------------- /images/image-similarity.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | 14 |

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 |
18 | 19 | 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. 20 | 21 |
22 |
-------------------------------------------------------------------------------- /images/image-summarization.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Write a short sentence that summarize the contents of an image.

7 |
8 | 9 |

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 |
12 | 13 |

14 |

15 | A two-way highway running surrounded by trees with lots of cars and a gas station on the right. 16 |

17 |
18 | 19 |

20 |

21 | Don't mention that you're describing an image: 22 | In this image, we see a highway. 23 |

24 |
25 | 26 |

27 |

28 | Be specific: 29 | An outdoor scene with a city in the background. 30 |

31 |
32 |
33 |

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 |

37 | 38 |
-------------------------------------------------------------------------------- /images/image-tagging-with-basic-layout.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Your custom quick instructions and examples 11 | 12 | 13 | 14 | Your custom detailed instracutions and more examples 15 | 16 | -------------------------------------------------------------------------------- /images/image-tagging.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Given an image, write three words or short phrases that summarize its contents.

7 |
8 | 9 |

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 |
11 | 12 |

13 |

14 |

    15 |
  • Highway
  • 16 |
  • Cars
  • 17 |
  • Gas station
  • 18 |
19 |

20 |
21 | 22 |

23 |

24 | These are not specific enough: 25 |

    26 |
  1. Trees
  2. 27 |
  3. Outside
  4. 28 |
  5. Daytime
  6. 29 |
30 |

31 |
32 |
33 |

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 |

37 | 38 | 39 | 40 |
-------------------------------------------------------------------------------- /images/instance-segmentation-custom-values.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | Describe your task here. 13 | 14 |


15 |

16 | Add new label 17 |

18 | 19 | 20 |
21 | Add 22 | 23 |


24 |

25 | Manage labels 26 |

27 |
28 |
29 | 30 | 31 | Describe your task in more detail here. 32 | 33 |
34 |
35 | 36 | -------------------------------------------------------------------------------- /images/instance-segmentation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |
    12 |
  1. Read the task carefully and inspect the image.
  2. 13 |
  3. Read the options and review the examples provided to understand more about the labels.
  4. 14 |
  5. Choose the appropriate label that best suits the image.
  6. 15 |
16 |
17 | 18 | 19 |

Use the tools to label all instances of the requested items in the image

20 |
21 |
22 |
-------------------------------------------------------------------------------- /images/keypoint-additional-answer-validation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 11 | 12 | Describe your task briefly here and give examples 13 | 14 | 15 | Give additional instructions and good/bad examples here 16 | 17 | 18 |
19 | 20 | -------------------------------------------------------------------------------- /images/keypoint-custom-labels.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | Describe your task here. 13 | 14 |


15 |

16 | Add new label 17 |

18 | 19 | 20 |
21 | Add 22 | 23 |


24 |

25 | Manage labels 26 |

27 |
28 |
29 | 30 | 31 | Describe your task in more detail here. 32 | 33 |
34 |
35 | 36 | -------------------------------------------------------------------------------- /images/keypoint.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

Use the keypoint tool to place a point on the requested target(s) of interest:

12 |
    13 |
  1. 14 | Do not include parts of the target that cannot be seen, 15 | even though you think you can interpolate the whole shape of the target. 16 |
  2. 17 |
18 |
19 | 20 | 21 | Place a point on the requested target(s) of interest 22 | 23 |
24 |
-------------------------------------------------------------------------------- /images/line.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |

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 |
15 | 16 | 17 |

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 |
26 | 27 |
28 |
-------------------------------------------------------------------------------- /images/multi-image-classification-draggable.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 24 | 25 | 26 | Your instructions here. 27 | 28 |
29 | 30 |

31 | Identify which photos are of the same people, and group them by dragging and dropping them onto the bottom. 32 |

33 | 34 |
35 |
36 |

Not yet classified

37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
45 |
46 | 47 |
48 |
49 |

Face 1

50 |
51 | 52 |
53 |

Face 2

54 |
55 | 56 |
57 |

Face 3

58 |
59 |
60 | 61 | 62 |
63 |
64 | 65 | 94 | 95 | 96 | 97 | 98 | 109 | -------------------------------------------------------------------------------- /images/ocr.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | Describe your task here. 13 | 14 |


15 |
16 |

17 | What is the date on this receipt? 18 |

19 | 20 | 21 | 22 |


23 |

24 | Add new label 25 |

26 | 27 | 28 |
29 | Add 30 | 31 |


32 |

33 | Manage labels 34 |

35 |
36 |
37 | 38 | 39 | Describe your task in more detail here. 40 | 41 |
42 |
43 | 44 | -------------------------------------------------------------------------------- /images/person-recognition-image.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 |
13 |

14 | Instructions: Do you recognize who this person is?
Help us to tag him or her 15 |

16 |
17 |
18 | 19 |
20 |
21 | By entering the first and last name of this person. 22 | 23 | 24 | Submit 25 |
26 |
27 |
28 |
-------------------------------------------------------------------------------- /images/polygon.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |
    12 |
  • Make the polygon tight around the object
  • 13 |
  • You need to select a label before starting a polygon
  • 14 |
  • You will need to select a label again after completing a polygon
  • 15 |
  • To select a polygon, you can click on its borders
  • 16 |
  • You can start drawing a polygon from inside another polygon
  • 17 |
  • You can undo and redo while you're drawing a polygon to go back and forth between points you've placed
  • 18 |
  • You are prevented from drawing lines that overlap other lines from the same polygon
  • 19 |
20 |
21 | 22 | 23 |

Draw a polygon around each of the requested target(s) of interest

24 |

Make the polygon tight around the object

25 |
26 |
27 |
-------------------------------------------------------------------------------- /images/polyline.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 |

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 |
19 | 20 | 21 |

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 |
29 |
30 |
-------------------------------------------------------------------------------- /images/rekognition_detect_moderation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | {% capture s3_uri %}s3://{{ task.input.aiServiceRequest.image.s3Object.bucket }}/{{ task.input.aiServiceRequest.image.s3Object.name }}{% endcapture %} 3 | 4 | 5 | 17 | 18 | 23 |

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 |
132 | 133 | 134 |
135 |
136 | -------------------------------------------------------------------------------- /images/semantic-segmentation-bounding-box-validation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | Describe your task 12 | 13 | 14 | 15 | Describe your task 16 |
17 |
18 |
19 |

20 | Color codes 21 |

22 | Bird wing: 23 | 24 | 25 |
26 | Bird eye: 27 | 28 | 29 |
30 | Bird beak: 31 | 32 |
33 |
34 |
35 |

36 | Segmentation opacity: 37 |

38 | 39 | 40 |
41 | 42 |
43 |
44 | 45 | 88 | -------------------------------------------------------------------------------- /images/semantic-segmentation-custom-labels.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | Describe your task here. 13 | 14 |


15 |

16 | Add new label 17 |

18 | 19 | 20 |
21 | Add 22 | 23 |


24 |

25 | Manage labels 26 |

27 |
28 |
29 | 30 | 31 | Describe your task in more detail here. 32 | 33 |
34 |
35 | 36 | -------------------------------------------------------------------------------- /images/semantic-segmentation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 |
    12 |
  1. Read the task carefully and inspect the image.
  2. 13 |
  3. Read the options and review the examples provided to understand more about the labels.
  4. 14 |
  5. Choose the appropriate label that best suits the image.
  6. 15 |
16 |
17 | 18 | 19 |

Use the tools to label the requested items in the image

20 |
21 |
22 |
-------------------------------------------------------------------------------- /other/blank.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /other/custom-instructions-width.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 14 | 15 | 19 | 20 | 21 |

Read the task carefully and inspect the video.

22 |

Choose the appropriate label that best suits the video.

23 |
24 | 25 |

Read the task carefully and inspect the video.

26 |

Choose the appropriate label that best suits the video.

27 |
28 |
29 |
30 | 31 | 48 | -------------------------------------------------------------------------------- /other/item-equality.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 |
11 |

Item 1

12 |

Title: {{ task.input.item1.title }}

13 |

Link

14 |

15 | 16 |

17 |
18 |
19 |
20 |

Item 2

21 |

Title: {{ task.input.item2.title }}

22 |

Link

23 |

24 | 25 |

26 |
27 |
28 | 29 |

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 |
33 | 34 | Are these two items the same? 35 | 36 |
37 |
-------------------------------------------------------------------------------- /other/receipt-transcription.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | Describe your task here. 13 | 14 |


15 |
16 |

17 | What is the date on this receipt? 18 |

19 | 20 | 21 | 22 |


23 |

24 | Add new label 25 |

26 | 27 | 28 |
29 | Add 30 | 31 |


32 |

33 | Manage labels 34 |

35 |
36 |
37 | 38 | 39 | Describe your task in more detail here. 40 | 41 |
42 |
43 | 44 | -------------------------------------------------------------------------------- /other/search-relevance.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 |

Title: {{ task.input.title }}

11 |

Link

12 |

13 | 14 |

15 |
16 | 17 |

If someone searched for {{ task.input.searchText }}, would this item be relevant to them?

18 |
19 |

Definition of relevance:

20 | 21 |
    22 |
  • The item can be used directly for the interest
    23 | (e.g. tent in camping)
  • 24 |
  • The item is themed towards a certain interest
    25 | (e.g. Disney Frozen themed clothing)
  • 26 |
  • The item, while not directly themed for the interest, is used by interest enthusiasts
    27 | (e.g. generic knife that people use for mushroom hunting, clothing used to dress up as Lord of the Rings (movie/book) characters)
  • 28 |
29 |

Note that related toys/decorations/themed items count as 'Yes'.

30 |
31 |
32 | 33 | If someone searched for {{ task.input.searchText }}, would this item be relevant to them? 34 | 35 |
36 |
-------------------------------------------------------------------------------- /other/side-by-side-comparison.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 26 | 27 | 28 |
29 |

Instructions

30 | Lorem ipsum... 31 |
32 |
33 |

Background

34 |

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 |
36 |
37 | 38 |

Option 1

39 |

Nulla facilisi morbi tempus iaculis urna. Orci dapibus ultrices in iaculis nunc sed augue lacus.

40 |
41 | 42 | 43 |

Option 2

44 |

Ultrices vitae auctor eu augue ut. Pellentesque massa placerat duis ultricies lacus sed turpis tincidunt id.

45 |
46 |
47 |
48 |

Question

49 |

Which do you agree with?

50 | 51 | Option 1 52 | Option 2 53 | 54 | 55 |

Why did you choose this answer?

56 | 57 |
58 |
59 | -------------------------------------------------------------------------------- /other/survey-link.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

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 | 16 |

17 |
-------------------------------------------------------------------------------- /other/website-classification.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | {{ task.input.taskObject }} 11 | 12 | 13 | 14 |

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 |
18 | 19 | 20 | Choose the appropriate category that best suits the company. 21 | 22 |
23 |
-------------------------------------------------------------------------------- /other/website-collection.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

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 | 8 |
-------------------------------------------------------------------------------- /text/collect-utterance.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Collect utterances for intent

7 |
8 | 9 | 10 |

Collect utterances for intent

11 |

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 |
13 | 14 | 15 |

Context

16 |

You bought a pair of shoes online but they don't fit

17 | 18 |

Intent

19 |

You want to try to return the shoes via an online customer service chat bot

20 | 21 |

Response

22 |

I would like to return a pair of shoes

23 |
24 | 25 | 26 |

Context

27 |

You bought a pair of shoes online but they don't fit

28 | 29 |

Intent

30 |

You want to try to return the shoes via an online customer service chat bot

31 | 32 |

Response

33 |

Hi, I'm trying to buy a plane ticket for tomorrow morning and your website isn't working

34 |
35 | 36 | 37 |

Context

38 |

You bought a pair of shoes online but they don't fit

39 | 40 |

Intent

41 |

You want to try to return the shoes via an online customer service chat bot

42 | 43 |

Response

44 |

Don't fit

45 |
46 |
47 | 48 | 49 |

Write what you would say in the given situation:

50 |

Context: {{ task.input.context }}

51 |

Intent: {{ task.input.intent }}

52 | 53 | 54 |
-------------------------------------------------------------------------------- /text/conversation-relevance.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | {{ task.input.conversation }} 11 | 12 | 13 | 14 |

How relevant is the below conversation to the given topic?

15 |
16 | 17 | 18 | How relevant is the below conversation to the topic: {{ task.input.topic }} 19 | 20 |
21 |
-------------------------------------------------------------------------------- /text/document-classification.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | 14 |

Read the task carefully and inspect the document.

15 |

Choose the appropriate label that best suits the document.

16 |
17 | 18 | 19 | Please choose the correct category for the document 20 | 21 |
22 |
-------------------------------------------------------------------------------- /text/emotion-detection-tweet.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 13 | 14 | 15 | 16 | 17 |

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 |
20 | 21 | 22 |

Select the primary emotion the tweet is expressing.

23 |
24 |
25 |
-------------------------------------------------------------------------------- /text/emotion-detection.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | {{ task.input.taskObject }} 11 | 12 | 13 | 14 |

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 |
17 | 18 | 19 |

Select the primary emotion the text is expressing.

20 |
21 |
22 |
-------------------------------------------------------------------------------- /text/fill-in-the-blank.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

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 | 7 |
-------------------------------------------------------------------------------- /text/fill-out-the-sentence.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

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 | 7 | 8 |
-------------------------------------------------------------------------------- /text/intent-detection.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | {{ task.input.utterance }} 11 | 12 | 13 | 14 |

Select the most relevant intention expressed by the text.

15 |
16 |

Example: I would like to return a pair of shoes

17 |

Intent: Return

18 |
19 |
20 | 21 | 22 | Pick the most relevant intention expressed by the text 23 | 24 |
25 |
-------------------------------------------------------------------------------- /text/key-phrase-extraction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 15 | 16 |

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 |
27 | 28 | Provide additional instructions and examples here 29 | 30 |
-------------------------------------------------------------------------------- /text/named-entity-recognition-with-additional-classification.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 |
    11 |
  1. Read the text carefully.
  2. 12 |
  3. Highlight words, phrases, or sections of the text.
  4. 13 |
  5. Choose the label that best matches what you have highlighted.
  6. 14 |
  7. To change a label, choose highlighted text and select a new label.
  8. 15 |
  9. To remove a label from highlighted text, choose the X next to the abbreviated label name on the highlighted text.
  10. 16 |
  11. You can select all of a previously highlighted text, but not a portion of it.
  12. 17 |
18 |
19 | 20 | 21 | Apply labels to words or phrases. 22 | 23 | 24 |
25 |

26 | What is the overall subject of this text? 27 |

28 | 29 | Technology 30 | Politics 31 | 32 |
33 |
34 | 35 | 45 | -------------------------------------------------------------------------------- /text/named-entity-recognition.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 |
    11 |
  1. Read the text carefully.
  2. 12 |
  3. Highlight words, phrases, or sections of the text.
  4. 13 |
  5. Choose the label that best matches what you have highlighted.
  6. 14 |
  7. To change a label, choose highlighted text and select a new label.
  8. 15 |
  9. To remove a label from highlighted text, choose the X next to the abbreviated label name on the highlighted text.
  10. 16 |
  11. You can select all of a previously highlighted text, but not a portion of it.
  12. 17 |
18 |
19 | 20 | 21 | Apply labels to words or phrases. 22 | 23 |
-------------------------------------------------------------------------------- /text/part-of-speech-tagging.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 |

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 |
22 | 23 | Provide additional instructions and examples here 24 | 25 |
-------------------------------------------------------------------------------- /text/predict-next-word.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

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 | 7 |
-------------------------------------------------------------------------------- /text/same-speaker-evaluation.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 13 |

14 | 17 |
18 | 19 |

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 |
23 | 24 |
How confident are you that these two recordings were said by the same person?
25 |
26 |
Note: Only determine whether the same person spoke both recordings, ignore the content of the speech.
27 |
28 |
29 |
30 |
-------------------------------------------------------------------------------- /text/semantic-similarity.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 |

Text 1: {{ task.input.text1 }}

11 |

Text 2: {{ task.input.text2 }}

12 |
13 | 14 | 15 |

How similar is the meaning of these two pieces of text?

16 |
17 | 18 | 19 | How similar is the meaning of these two pieces of text? 20 | 21 |
22 |
-------------------------------------------------------------------------------- /text/sentiment-analysis-multiple-documents.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 29 | 30 | 31 | 32 | Your short instructions here. 33 | 34 | 35 | 36 | Your full instructions here. 37 | 38 | 39 |
40 |

What sentiment does this text convey?

41 | 42 |
43 | Nothing is great. 44 |
45 |
46 |
47 | 48 |
49 |

Select an option

50 | 51 | 62 |
63 | 64 |
65 |

What sentiment does this text convey?

66 | 67 |
68 | Everything is great! 69 |
70 |
71 |
72 | 73 |
74 |

Select an option

75 | 76 | 87 |
88 |
-------------------------------------------------------------------------------- /text/sentiment-analysis-tweet.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 12 | 13 | 14 | 15 | 16 |

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 |
22 | 23 | 24 |

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 |
31 |
32 |
-------------------------------------------------------------------------------- /text/sentiment-analysis.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | {{ task.input.taskObject }} 11 | 12 | 13 | 14 |

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 |
20 | 21 | 22 | Choose the primary sentiment that is expressed by the text. 23 | 24 |
25 |
-------------------------------------------------------------------------------- /text/text-classification-multiselect.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | {{ task.input.taskObject }} 12 | 13 | 14 | 15 |

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 |
21 | 22 | 23 | Choose all categories that are expressed by the text. 24 | 25 |
26 |
-------------------------------------------------------------------------------- /text/text-classification.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | {{ task.input.taskObject }} 11 | 12 | 13 | 14 |

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 |
20 | 21 | 22 | Choose the most relevant category that is expressed by the text. 23 | 24 |
25 |
-------------------------------------------------------------------------------- /text/textract_analyze_document.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | {% capture s3_uri %}s3://{{ task.input.aiServiceRequest.document.s3Object.bucket }}/{{ task.input.aiServiceRequest.document.s3Object.name }}{% endcapture %} 3 | 4 | 5 | 14 | 15 | 24 |

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 |

54 |
55 | 56 | 57 |
58 |
59 | -------------------------------------------------------------------------------- /text/translation-quality.liquid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

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 |