Typo in Annotators.ipynb
See original GitHub issueSuper excited to see Annotators making their way into Holoviews!
I was trying out the latest dev release 1.13.0a16 and I noticed a typo in the last cell of the example notebook Annotators.ipynb
. To be clear, the works as expected (creates a poly annotator), but the labels are misleading (its labeled as path and should be poly)
The code is:
poly_annotator = annotate.instance()
path_layout = path_annotator(hv.Polygons([]), annotations=['Label'])
annotate.compose(hv.element.tiles.Wikipedia(), point_layout, path_layout)
It should be:
poly_annotator = annotate.instance()
poly_layout = poly_annotator(hv.Polygons([]), annotations=['Label'])
annotate.compose(hv.element.tiles.Wikipedia(), point_layout, poly_layout)
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
CrowdTruth-core/Multiple Choice Task - Person Type ... - GitHub
In this tutorial, we will apply CrowdTruth metrics to a multiple choice crowdsourcing task for Person Type Annotation from video fragments. The ...
Read more >Learn how to make a jupyter notebook widget for annotation of ...
A small GUI tool for annotating atom properties are built using ipywidgets and RDKit.
Read more >Pytype - Jupyter Tutorial 0.9.0
Pytype is a static analysis tool that derives types from your Python code without the need for type annotations. However, it can also...
Read more >Annotating Datasets with CVAT - Google Colab
The tight integration between FiftyOne and CVAT allows you to curate and explore datasets in FiftyOne and then send off samples or existing...
Read more >Task error in custom recipe for image labelling - Prodigy Support
... image annotation recipe which is not going well. The recipe.py file has the following code: # AUTOGENERATED! DO NOT EDIT! File to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes please!
Done.