# Multi Label Tagging for Product Reviews

**Use case:** 

Tag a product review with several labels at once like price, quality and shipping so you spot recurring themes at scale.

## Input

```json
{
  "texts": [
    "Great quality jacket but shipping took two weeks and it felt overpriced"
  ],
  "categories": [
    "quality",
    "price",
    "shipping",
    "customer service"
  ],
  "multiLabel": true
}
```

## Output

```json
{
  "text": {
    "label": "Text",
    "format": "text"
  },
  "label": {
    "label": "Label",
    "format": "text"
  },
  "labels": {
    "label": "Labels",
    "format": "array"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "multiLabel": {
    "label": "Multi-label",
    "format": "boolean"
  },
  "truncated": {
    "label": "Truncated",
    "format": "boolean"
  },
  "observedAt": {
    "label": "Classified at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Bulk Text Classifier & Tagger](https://apify.com/scrapers_lat/text-classifier-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/text-classifier-tool) to learn more, explore other use cases, and run it yourself.