mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
27 lines
969 B
Svelte
27 lines
969 B
Svelte
<script lang="ts">
|
|
import { Accordion, AccordionItem } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Accordion disabled>
|
|
<AccordionItem title="Natural Language Classifier">
|
|
<p>
|
|
Natural Language Classifier uses advanced natural language processing and
|
|
machine learning techniques to create custom classification models. Users
|
|
train their data and the service predicts the appropriate category for the
|
|
inputted text.
|
|
</p>
|
|
</AccordionItem>
|
|
<AccordionItem title="Natural Language Understanding">
|
|
<p>
|
|
Analyze text to extract meta-data from content such as concepts, entities,
|
|
emotion, relations, sentiment and more.
|
|
</p>
|
|
</AccordionItem>
|
|
<AccordionItem title="Language Translator">
|
|
<p>
|
|
Translate text, documents, and websites from one language to another.
|
|
Create industry or region-specific translations via the service's
|
|
customization capability.
|
|
</p>
|
|
</AccordionItem>
|
|
</Accordion>
|