Skip to content

Commit aafaad5

Browse files
committedAug 11, 2022
Update examples
1 parent 4fc05b1 commit aafaad5

File tree

4 files changed

+53
-37
lines changed

4 files changed

+53
-37
lines changed
 

‎README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Build Status](https://github.com/dataqa/jupyter-annotate/actions/workflows/build.yml/badge.svg?branch=main)
44

5-
Inline Text Annotation for Jupyter Notebook/Lab
5+
Interactive Text Annotation for Jupyter Notebook/Lab
66

77
![Jupyter Annotate](examples/images/Annotate_1.png?raw=true "Jupyter Annotate")
88

@@ -23,6 +23,8 @@ jupyter nbextension enable --py [--sys-prefix|--user|--system] jupyterannotate
2323

2424
## Usage
2525

26+
See [Example](examples/introduction.ipynb)
27+
2628
Within an Jupyter Notebook cell:
2729

2830
```
@@ -36,9 +38,16 @@ DOCUMENTS = [
3638
]
3739
3840
# Instantiate widget
41+
# Optionally specify a list of spans to prepopulate
3942
annotation_widget = jupyterannotate.AnnotateWidget(
4043
docs=NEWS_HEADLINES,
41-
labels=LABELS
44+
labels=LABELS,
45+
spans=[
46+
[
47+
{'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},
48+
],
49+
[]
50+
]
4251
)
4352
4453
# Render
@@ -56,8 +65,20 @@ annotation_widget
5665
# Access spans - a List containing a List of Spans per document
5766
# e.g. [[{'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'}], []]
5867
annotation_widget.spans
68+
69+
70+
# See updates in real-time
71+
annotation_widget.spans = [
72+
[
73+
{'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},
74+
{'start': 69, 'end': 72, 'text': '10g', 'label': 'Quantity'}
75+
],
76+
[]
77+
]
5978
```
6079

80+
![Update Python](examples/images/Annotate_2.gif?raw=true "Update Python")
81+
6182
## Development Installation
6283

6384
Create a dev environment:

‎examples/images/Annotate_2.gif

110 KB
Loading

‎examples/Example.ipynb ‎examples/introduction.ipynb

+19-29
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"NEWS_HEADLINES = [\n",
3131
" \"Oracle introduced a new BI platform yesterday, Business Intelligence 10g that rolls up into one solution all of their BI tools. However, more interesting than the nitty-gritty details of what is included is the back story taking place at the same time.\",\n",
3232
" \"Microsoft will delay the release of its SP2 update for another week to fix software glitches. But not everyone is quite so eager to install the SP2 update for Windows XP. In fact, many companies have demanded the ability to prevent their ...\",\n",
33-
" \"SAN JOSE, Calif. - In a sign that Google Inc.'s initial public offering isn't as popular as expected, the company lowered its estimated price range to between \\$85 and \\$95 per share, down from the earlier prediction of \\$108 and \\$135 per share...\",\n",
3433
"]"
3534
]
3635
},
@@ -43,7 +42,7 @@
4342
{
4443
"data": {
4544
"application/vnd.jupyter.widget-view+json": {
46-
"model_id": "2efc9029e27c4548ab03763df8ab9217",
45+
"model_id": "8d5464a00cae4edc9dc697aee834e684",
4746
"version_major": 2,
4847
"version_minor": 0
4948
},
@@ -56,45 +55,36 @@
5655
}
5756
],
5857
"source": [
58+
"# Instantiate widget\n",
5959
"annotation_widget = jupyterannotate.AnnotateWidget(\n",
6060
" docs=NEWS_HEADLINES,\n",
61-
" labels=LABELS\n",
61+
" labels=LABELS,\n",
62+
" spans=[\n",
63+
" [\n",
64+
" {'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},\n",
65+
" ],\n",
66+
" []\n",
67+
" ] \n",
6268
")\n",
69+
"\n",
6370
"annotation_widget"
6471
]
6572
},
6673
{
6774
"cell_type": "code",
68-
"execution_count": 5,
75+
"execution_count": 4,
6976
"id": "926883f8-328f-4c2f-b7e7-99999c9cc6b1",
7077
"metadata": {},
71-
"outputs": [
72-
{
73-
"data": {
74-
"text/plain": [
75-
"[[{'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},\n",
76-
" {'start': 69, 'end': 72, 'text': '10g', 'label': 'Quantity'}],\n",
77-
" [{'start': 0, 'end': 9, 'text': 'Microsoft', 'label': 'Organization'},\n",
78-
" {'start': 159, 'end': 169, 'text': 'Windows XP', 'label': 'Product'}],\n",
79-
" [{'start': 34, 'end': 40, 'text': 'Google', 'label': 'Organization'}]]"
80-
]
81-
},
82-
"execution_count": 5,
83-
"metadata": {},
84-
"output_type": "execute_result"
85-
}
86-
],
78+
"outputs": [],
8779
"source": [
88-
"annotation_widget.spans"
80+
"annotation_widget.spans = [\n",
81+
" [\n",
82+
" {'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},\n",
83+
" {'start': 69, 'end': 72, 'text': '10g', 'label': 'Quantity'}\n",
84+
" ],\n",
85+
" []\n",
86+
"]"
8987
]
90-
},
91-
{
92-
"cell_type": "code",
93-
"execution_count": null,
94-
"id": "b89e2cc0-9ce5-43ff-a4f6-e1908a9e181f",
95-
"metadata": {},
96-
"outputs": [],
97-
"source": []
9888
}
9989
],
10090
"metadata": {

‎jupyterannotate/annotate.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,22 @@
44
# Copyright (c) Stuart Quin.
55
# Distributed under the terms of the Modified BSD License.
66

7-
"""
8-
TODO: Add module docstring
9-
"""
10-
117
from ipywidgets import DOMWidget, ValueWidget
128
from traitlets import Unicode, List
139
from ._frontend import module_name, module_version
1410

1511

1612
class AnnotateWidget(DOMWidget, ValueWidget):
17-
"""TODO: Add docstring here"""
13+
"""Interactive text annotation widget for Jupyter
14+
15+
Keyword arguments:
16+
docs -- List of string documents (required)
17+
labels -- List of labels (default [])
18+
spans -- List of Lists containing span dicts, (default [])
19+
20+
span dict format:
21+
{'start': 2, 'end': 7, 'text': 'Hello', 'label': 'Test'},
22+
"""
1823

1924
_model_name = Unicode("AnnotateModel").tag(sync=True)
2025
_model_module = Unicode(module_name).tag(sync=True)
@@ -25,4 +30,4 @@ class AnnotateWidget(DOMWidget, ValueWidget):
2530

2631
docs = List(trait=Unicode()).tag(sync=True)
2732
spans = List([]).tag(sync=True)
28-
labels = List().tag(sync=True)
33+
labels = List([]).tag(sync=True)

0 commit comments

Comments
 (0)