/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
docs/source/playground/template_start.ejs
31 строка
935 B
bmartel
fix: Playground docs starting example missing name attribute on Choices tag (#7801)
20 июн 2025, 16:45
Не верифицирован
20 июн 2025, 16:45
bc0d4a8
Код
Авторство
О чём код?
<!-- Starting template --> <script id="start-template" type="text"><View> <!-- Image with Polygons --> <View style="padding: 25px; box-shadow: 2px 2px 8px #AAA"> <Header value="Label the image with polygons"/> <Image name="img" value="$image"/> <Text name="text1" value="Select label, start to click on image"/> <PolygonLabels name="tag" toName="img"> <Label value="Airbus" background="blue"/> <Label value="Boeing" background="red"/> </PolygonLabels> </View> <!-- Text with multi-choices --> <View style="margin-top: 20px; padding: 25px; box-shadow: 2px 2px 8px #AAA;"> <Header value="Classify the text"/> <Text name="text2" value="$text"/> <Choices name="classification" toName="img" choice="multiple"> <Choice alias="wisdom" value="Wisdom"/> <Choice alias="long" value="Long"/> </Choices> </View> </View> </script>