Skip to content

Commit

Permalink
update explore path (#1176)
Browse files Browse the repository at this point in the history
<!-- Contributing guide:
https://github.com/openvinotoolkit/datumaro/blob/develop/CONTRIBUTING.md
-->

### Summary

<!--
Resolves #111 and #222.
Depends on #1000 (for series of dependent commits).

This PR introduces this capability to make the project better in this
and that.

- Added this feature
- Removed that feature
- Fixed the problem #1234
-->

### How to test
<!-- Describe the testing procedure for reviewers, if changes are
not fully covered by unit tests or manual testing can be complicated.
-->

### Checklist
<!-- Put an 'x' in all the boxes that apply -->
- [ ] I have added unit tests to cover my changes.​
- [ ] I have added integration tests to cover my changes.​
- [x] I have added the description of my changes into
[CHANGELOG](https://github.com/openvinotoolkit/datumaro/blob/develop/CHANGELOG.md).​
- [x] I have updated the
[documentation](https://github.com/openvinotoolkit/datumaro/tree/develop/docs)
accordingly

### License

- [ ] I submit _my code changes_ under the same [MIT
License](https://github.com/openvinotoolkit/datumaro/blob/develop/LICENSE)
that covers the project.
  Feel free to contact the maintainers if that's a concern.
- [ ] I have updated the license header for each file (see an example
below).

```python
# Copyright (C) 2023 Intel Corporation
#
# SPDX-License-Identifier: MIT
```
  • Loading branch information
Jihyeon Yi authored Oct 20, 2023
1 parent 46a97d7 commit 8f5ceb9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
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

0 comments on commit 8f5ceb9

Please sign in to comment.