Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update explore path #1176

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(<https://github.com/openvinotoolkit/datumaro/pull/1175>)

### Bug fixes
- Correct explore path in the related document.
(<https://github.com/openvinotoolkit/datumaro/pull/1176>)
- Fix errata in the voc document. Color values in the labelmap.txt should be separated by commas, not colons.
(<https://github.com/openvinotoolkit/datumaro/pull/1162>)
- Fix hyperlink errors in the document
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The Python example for the usage of explorer is described in :doc:`here <../../j

from datumaro.components.dataset import Dataset
from datumaro.components.environment import Environment
from datumaro.componenets.explorer import Explorer
from datumaro.components.algorithms.hash_key_inference.explorer import Explorer

data_path = '/path/to/data'

Expand Down
4 changes: 2 additions & 2 deletions notebooks/07_data_explorer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"# SPDX-License-Identifier: MIT\n",
"\n",
"import datumaro as dm\n",
"from datumaro.components.explorer import Explorer\n",
"from datumaro.components.algorithms.hash_key_inference.explorer import Explorer\n",
"from datumaro.components.visualizer import Visualizer"
]
},
Expand All @@ -46,7 +46,7 @@
"metadata": {},
"source": [
"### Explore with COCO instance segmentation dataset\n",
"To use data exploration, we need to define hash for each dataset. So, set `save_hash` as `True`. The default value is `False`."
"To use data exploration, we need to define hash for each dataset. `Explorer` calculates the hash key automatically. If you want to re-use the calculated hash key, please set `save_hashkey_meta` as `True` when exporting the dataset. The default value is `False`."
]
},
{
Expand Down
Loading