forked from HumanSignal/label-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: DEV-2578: Documentation for Dynamic Labels (HumanSignal#2502)
* docs: DEV-2578: examples for dynamic labels * move Table to object tags * add missed params to tag docs * Add 5 new templates for Dynamic Labels ASR Hypotheses Inventory Tracking SERP Ranking Text-to-Image Generation Visual Genome * Fix small arrows in Browse Templates * remove tabs from config templates * Add Dynamic Labels to templates docs * Update asr_hypotheses.md * Update inventory_tracking.md * Update serp_ranking.md * Update text_to_image.md * Update visual_genome.md * Change templates structure * Fix sample data for templates * Add images to template pages in doc * Fixed images - recreate, 2x for retina, compression * Fix Inventory Tracking and Text-to-Image tpls - fix Inventory Tracking according to image - fix Text-to-Image category * Fixes after review; add missed value and html params * More detailed description for Inventory Tracking * Reorder and rephrase Inventory Tracking text * More detailed description for SERP Ranking template * Move templates to relevant existing categories * More info about children and allownested * Fix data in SERP Ranking in-app template * Fixes after review * Docs for Dynamic Choices with examples Co-authored-by: anithamuthu2022 <[email protected]> Co-authored-by: nik <[email protected]>
- Loading branch information
1 parent
40156c2
commit f1df600
Showing
21 changed files
with
594 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: ASR Hypotheses Selection | ||
type: templates | ||
category: Ranking and Scoring | ||
cat: ranking-and-scoring | ||
order: 551 | ||
meta_title: Choose the most accurate Automatic Speech Recognition (ASR) hypotheses | ||
meta_description: | ||
--- | ||
|
||
When you work with automatic speech transcribers, you are provided with several transcription hypotheses. Now, you can select one of the variations from the list of transcription hypotheses. | ||
<br/> | ||
|
||
<img src="/images/templates/asr-hypotheses.png" alt="ASR Hypotheses Selection example" class="gif-border" width="552px" height="408px" /> | ||
|
||
## Labeling Configuration | ||
|
||
```xml | ||
<View> | ||
<Audio name="audio" value="$audio"/> | ||
<Choices name="transcriptions" toName="audio" value="$transcriptions" selection="highlight"/> | ||
</View> | ||
``` | ||
|
||
## Example data | ||
|
||
```json | ||
{ | ||
"data": { | ||
"audio": "https://htx-pub.s3.amazonaws.com/datasets/audio/f2btrop6.0.wav", | ||
"transcriptions": [{ | ||
"style": "padding-left: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; background-color: #FFFFFF", | ||
"value": "potrostith points out that if school based clinics were established parental permission would be required for students to receive each service offered" | ||
}, { | ||
"style": "padding-left: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; background-color: #F8F8F8", | ||
"value": "potrostith points out that if school-based clinics were established parental permission would be required for students to receive each service offered" | ||
}, { | ||
"style": "padding-left: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; background-color: #F5F5F5", | ||
"value": "purporting points out that if school based clinics were established parental permission would be required for students to receive each service offered" | ||
}, { | ||
"style": "padding-left: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; background-color: #F0F0F0", | ||
"value": "pork roasted points out that if school based clinics were establish parental permission would be required for students to receive each service offered" | ||
}, { | ||
"style": "padding-left: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; background-color: #E8E8E8", | ||
"value": "purpose it points out that if school based clinics war establish parental permission would be required for students to receive each service offered" | ||
}] | ||
} | ||
} | ||
``` |
Oops, something went wrong.