Skip to content

Commit

Permalink
Doc fixes, image classification template added.
Browse files Browse the repository at this point in the history
  • Loading branch information
makseq committed Feb 10, 2020
1 parent c9231b6 commit 2c7e869
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,19 +106,21 @@ The list of supported use cases for data annotation. Please contribute your own
| Task | Description |
|-|-|
| **Image** | |
| Classification | Put images into categories |
| [Classification](https://labelstud.io/templates/image_classification.html) | Put images into categories |
| Object Detection | Detect objects in an image using a bounding box or polygons |
| Semantic Segmentation | Detect for each pixel the object category it belongs to |
| Pose Estimation | Mark positions of a person’s joints |
| **Text** | |
| Classification | Put texts into categories |
| [Classification](https://labelstud.io/templates/sentiment_analysis.html) | Put texts into categories |
| Summarization | Create a summary that represents the most relevant information within the original content |
| HTML Tagging | Annotate things like resumes, research, legal papers and excel sheet converted to HTML |
| **Audio** | |
| Classification | Put audios into categories |
| [Classification](https://labelstud.io/templates/audio_classification.html) | Put audios into categories |
| Speaker Diarisation | partitioning an input audio stream into homogeneous segments according to the speaker identity |
| Emotion Recognition | Tag and identifying emotion from the audio |
| Transcription | Write down verbal communication in text |
| Transcription | Write down verbal communication in text |
| **Video** | |
| [Classification](https://labelstud.io/templates/video_classification.html) | Put videos into categories |
| **Comparison** | |
| Pairwise | Comparing entities in pairs to judge which of each entity is preferred |
| Ranking | Sort items in the list according to some property |
Expand Down
19 changes: 19 additions & 0 deletions docs/source/templates/image_classification.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Image Classification
type: templates
order: 207
---

Image classification with checkboxes.

## Config

```html
<View>
<Image name="img" value="$image"></Image>
<Choices name="tag" toName="img" choice="single-radio">
<Choice value="Airbus"></Choice>
<Choice value="Boeing" background="blue"></Choice>
</Choices>
</View>
```

0 comments on commit 2c7e869

Please sign in to comment.