gradio-textlabeler


Namegradio-textlabeler JSON
Version 1.0.2 PyPI version JSON
download
home_pageNone
SummaryA Gradio custom component to help you label text snippets inline
upload_time2024-05-19 18:23:31
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords gradio-custom-component
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ---
tags: [gradio-custom-component, TextLabeler]
title: gradio_textlabeler
short_description: A Gradio custom component to help you label text snippets
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---

# `gradio_textlabeler`
<a href="https://pypi.org/project/gradio_textlabeler/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_textlabeler"></a> <a href="https://github.com/amithkk/gradio_textlabeler/issues" target="_blank"><img alt="Static Badge" src="https://img.shields.io/badge/Issues-white?logo=github&logoColor=black"></a> 

A Gradio custom component to help you label text snippets inline

## Installation

```bash
pip install gradio_textlabeler
```

## Usage

```python
from gradio_textlabeler.textlabeler import TextLabelerData
import gradio as gr
from gradio_textlabeler import TextLabeler


with gr.Blocks() as demo:
    gr.Markdown("Label the tweets as positive, negative, or neutral and click on Submit Labels")
    inp = TextLabeler(
        label="Label these tweets",
        info="Label the tweets as positive, negative, or neutral.",
        label_choices=["Positive", "Negative", "Neutral"],
        value=[
            {"text": "I am extremely mad", "label": "Negative"},
            {
                "text": "This product is the next best thing since sliced bread",
                "label": "Positive",
            },
            {"text": "I don't know how I feel about this", "label": None},
            {"text": "The weather is nice today", "label": None},
            {"text": "I love this song", "label": "Positive"},
            {"text": "I'm not sure what to think", "label": None},
        ],
        allow_duplicate_labels=True,
        unlabelled_value_display="No Label",
        text_column_width="60%",
        text_column_header="Tweet",
        label_column_header="Sentiment",
    )   
    btn = gr.Button("Submit Labels")
    out = TextLabeler(label="Label output example")
   
    btn.click(fn=lambda x:x, inputs=inp, outputs=out)


if __name__ == "__main__":
    demo.launch()

```

## `TextLabeler`

### Initialization

<table>
<thead>
<tr>
<th align="left">name</th>
<th align="left" style="width: 25%;">type</th>
<th align="left">default</th>
<th align="left">description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>label_choices</code></td>
<td align="left" style="width: 25%;">

```python
list[str] | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">None</td>
</tr>

<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">

```python
list[LabeledValue] | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">Set of text-label pairs in the form of LabeledValues. If a "text" is intentionally not labeled, the "label" should be set to None.</td>
</tr>

<tr>
<td align="left"><code>allow_duplicate_labels</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>False</code></td>
<td align="left">If True, allows the same label to be used for multiple text entries.</td>
</tr>

<tr>
<td align="left"><code>unlabelled_value_display</code></td>
<td align="left" style="width: 25%;">

```python
str
```

</td>
<td align="left"><code>"Unlabeled"</code></td>
<td align="left">The label to display for text entries that are not labeled.</td>
</tr>

<tr>
<td align="left"><code>text_column_header</code></td>
<td align="left" style="width: 25%;">

```python
str
```

</td>
<td align="left"><code>"Text"</code></td>
<td align="left">The header to display for the text column.</td>
</tr>

<tr>
<td align="left"><code>label_column_header</code></td>
<td align="left" style="width: 25%;">

```python
str
```

</td>
<td align="left"><code>"Label"</code></td>
<td align="left">The header to display for the label column.</td>
</tr>

<tr>
<td align="left"><code>text_column_width</code></td>
<td align="left" style="width: 25%;">

```python
str
```

</td>
<td align="left"><code>"60%"</code></td>
<td align="left">The width of the text column.</td>
</tr>

<tr>
<td align="left"><code>label</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">component name in interface.</td>
</tr>

<tr>
<td align="left"><code>info</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">additional component description.</td>
</tr>

<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">

```python
float | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If `value` is a callable, run the function 'every' number of seconds while the client connection is open. Has no effect otherwise. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</td>
</tr>

<tr>
<td align="left"><code>show_label</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">if True, will display the component label.</td>
</tr>

<tr>
<td align="left"><code>scale</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>
</tr>

<tr>
<td align="left"><code>min_width</code></td>
<td align="left" style="width: 25%;">

```python
int
```

</td>
<td align="left"><code>160</code></td>
<td align="left">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>
</tr>

<tr>
<td align="left"><code>interactive</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">if True, choices in this dropdown will be selectable; if False, selection will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</td>
</tr>

<tr>
<td align="left"><code>visible</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, component will be hidden.</td>
</tr>

<tr>
<td align="left"><code>elem_id</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>

<tr>
<td align="left"><code>elem_classes</code></td>
<td align="left" style="width: 25%;">

```python
list[str] | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>

<tr>
<td align="left"><code>render</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>
</tr>

<tr>
<td align="left"><code>key</code></td>
<td align="left" style="width: 25%;">

```python
int | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved.</td>
</tr>
</tbody></table>


### Events

| name | description |
|:-----|:------------|
| `change` | Triggered when the value of the TextLabeler changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |
| `submit` | This listener is triggered when the user presses the Enter key while the TextLabeler is focused. |



### User function

The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).

- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.

The code snippet below is accurate in cases where the component is used as both an input and an output.

- **As output:** Is passed, the preprocessed input data sent to the user's function in the backend.
- **As input:** Should return, the output data received by the component from the user's function in the backend.

 ```python
 def predict(
     value: TextLabelerData
 ) -> TextLabelerData:
     return value
 ```
 

## `LabeledValue`
```python
class LabeledValue(BaseModel):
    text: str
    label: str | None
```

## `TextLabelerData`
```python
class TextLabelerData(GradioRootModel):
    root: List[LabeledValue]
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gradio-textlabeler",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "gradio-custom-component",
    "author": null,
    "author_email": "Amith K K <amithkumaran@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/76/de/675b99d5d27938b338d61e47ad3a74036608f94974407fd4fb6313f3480a/gradio_textlabeler-1.0.2.tar.gz",
    "platform": null,
    "description": "---\ntags: [gradio-custom-component, TextLabeler]\ntitle: gradio_textlabeler\nshort_description: A Gradio custom component to help you label text snippets\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_textlabeler`\n<a href=\"https://pypi.org/project/gradio_textlabeler/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_textlabeler\"></a> <a href=\"https://github.com/amithkk/gradio_textlabeler/issues\" target=\"_blank\"><img alt=\"Static Badge\" src=\"https://img.shields.io/badge/Issues-white?logo=github&logoColor=black\"></a> \n\nA Gradio custom component to help you label text snippets inline\n\n## Installation\n\n```bash\npip install gradio_textlabeler\n```\n\n## Usage\n\n```python\nfrom gradio_textlabeler.textlabeler import TextLabelerData\nimport gradio as gr\nfrom gradio_textlabeler import TextLabeler\n\n\nwith gr.Blocks() as demo:\n    gr.Markdown(\"Label the tweets as positive, negative, or neutral and click on Submit Labels\")\n    inp = TextLabeler(\n        label=\"Label these tweets\",\n        info=\"Label the tweets as positive, negative, or neutral.\",\n        label_choices=[\"Positive\", \"Negative\", \"Neutral\"],\n        value=[\n            {\"text\": \"I am extremely mad\", \"label\": \"Negative\"},\n            {\n                \"text\": \"This product is the next best thing since sliced bread\",\n                \"label\": \"Positive\",\n            },\n            {\"text\": \"I don't know how I feel about this\", \"label\": None},\n            {\"text\": \"The weather is nice today\", \"label\": None},\n            {\"text\": \"I love this song\", \"label\": \"Positive\"},\n            {\"text\": \"I'm not sure what to think\", \"label\": None},\n        ],\n        allow_duplicate_labels=True,\n        unlabelled_value_display=\"No Label\",\n        text_column_width=\"60%\",\n        text_column_header=\"Tweet\",\n        label_column_header=\"Sentiment\",\n    )   \n    btn = gr.Button(\"Submit Labels\")\n    out = TextLabeler(label=\"Label output example\")\n   \n    btn.click(fn=lambda x:x, inputs=inp, outputs=out)\n\n\nif __name__ == \"__main__\":\n    demo.launch()\n\n```\n\n## `TextLabeler`\n\n### Initialization\n\n<table>\n<thead>\n<tr>\n<th align=\"left\">name</th>\n<th align=\"left\" style=\"width: 25%;\">type</th>\n<th align=\"left\">default</th>\n<th align=\"left\">description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code>label_choices</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">None</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[LabeledValue] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Set of text-label pairs in the form of LabeledValues. If a \"text\" is intentionally not labeled, the \"label\" should be set to None.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>allow_duplicate_labels</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>False</code></td>\n<td align=\"left\">If True, allows the same label to be used for multiple text entries.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>unlabelled_value_display</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\"Unlabeled\"</code></td>\n<td align=\"left\">The label to display for text entries that are not labeled.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>text_column_header</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\"Text\"</code></td>\n<td align=\"left\">The header to display for the text column.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label_column_header</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\"Label\"</code></td>\n<td align=\"left\">The header to display for the label column.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>text_column_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\"60%\"</code></td>\n<td align=\"left\">The width of the text column.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">component name in interface.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>info</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">additional component description.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nfloat | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If `value` is a callable, run the function 'every' number of seconds while the client connection is open. Has no effect otherwise. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, will display the component label.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>min_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>160</code></td>\n<td align=\"left\">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>interactive</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, choices in this dropdown will be selectable; if False, selection will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>visible</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, component will be hidden.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_classes</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>render</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>key</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `change` | Triggered when the value of the TextLabeler changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |\n| `submit` | This listener is triggered when the user presses the Enter key while the TextLabeler is focused. |\n\n\n\n### User function\n\nThe impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).\n\n- When used as an Input, the component only impacts the input signature of the user function.\n- When used as an output, the component only impacts the return signature of the user function.\n\nThe code snippet below is accurate in cases where the component is used as both an input and an output.\n\n- **As output:** Is passed, the preprocessed input data sent to the user's function in the backend.\n- **As input:** Should return, the output data received by the component from the user's function in the backend.\n\n ```python\n def predict(\n     value: TextLabelerData\n ) -> TextLabelerData:\n     return value\n ```\n \n\n## `LabeledValue`\n```python\nclass LabeledValue(BaseModel):\n    text: str\n    label: str | None\n```\n\n## `TextLabelerData`\n```python\nclass TextLabelerData(GradioRootModel):\n    root: List[LabeledValue]\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Gradio custom component to help you label text snippets inline",
    "version": "1.0.2",
    "project_urls": {
        "repository": "https://github.com/amithkk/gradio_textlabeler"
    },
    "split_keywords": [
        "gradio-custom-component"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7e513315e7b9d9acb7d7bdb2af4b988f0464fa63bd6b3b1c68108e752c98395",
                "md5": "0c9f02ba9a16fddcb0bdc63042330f17",
                "sha256": "028e71955894114b7e429bc671ef0b86727a117f503343adb27c13e77c9f8350"
            },
            "downloads": -1,
            "filename": "gradio_textlabeler-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0c9f02ba9a16fddcb0bdc63042330f17",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 33308,
            "upload_time": "2024-05-19T18:23:29",
            "upload_time_iso_8601": "2024-05-19T18:23:29.577895Z",
            "url": "https://files.pythonhosted.org/packages/f7/e5/13315e7b9d9acb7d7bdb2af4b988f0464fa63bd6b3b1c68108e752c98395/gradio_textlabeler-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76de675b99d5d27938b338d61e47ad3a74036608f94974407fd4fb6313f3480a",
                "md5": "5c389880f711a44a6ef2143c9d424a0b",
                "sha256": "38768668ba1004bcc21a2301d032b27d0cfe641b6d41a5787bff30a53ea4fc56"
            },
            "downloads": -1,
            "filename": "gradio_textlabeler-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5c389880f711a44a6ef2143c9d424a0b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 73167,
            "upload_time": "2024-05-19T18:23:31",
            "upload_time_iso_8601": "2024-05-19T18:23:31.974052Z",
            "url": "https://files.pythonhosted.org/packages/76/de/675b99d5d27938b338d61e47ad3a74036608f94974407fd4fb6313f3480a/gradio_textlabeler-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-19 18:23:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "amithkk",
    "github_project": "gradio_textlabeler",
    "github_not_found": true,
    "lcname": "gradio-textlabeler"
}
        
Elapsed time: 0.24735s