Skip to content

Commit

Permalink
Update assets for explorer (#1647)
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
-->
- Fixed the problem in
[action](https://github.com/openvinotoolkit/datumaro/actions/runs/11356378945/job/31587449268)
- This issue occurs occasionally

### 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.​
- [ ] I have added the description of my changes into
[CHANGELOG](https://github.com/openvinotoolkit/datumaro/blob/develop/CHANGELOG.md).​
- [ ] 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) 2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
```
  • Loading branch information
sooahleex authored Oct 16, 2024
1 parent acad7ec commit 62bb4f4
Show file tree
Hide file tree
Showing 45 changed files with 2 additions and 6 deletions.
File renamed without changes
Binary file added tests/assets/explore_dataset/bird/1.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/bird/2.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/bird/3.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/bird/4.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/bird/5.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
Binary file added tests/assets/explore_dataset/cat/1.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/cat/2.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/cat/3.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/cat/4.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/cat/5.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
Binary file added tests/assets/explore_dataset/dog/1.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/dog/2.JPEG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/assets/explore_dataset/dog/3.JPEG
Binary file added tests/assets/explore_dataset/dog/4.JPEG
Binary file added tests/assets/explore_dataset/dog/5.JPEG
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
File renamed without changes
Binary file added tests/assets/explore_dataset/monkey/1.JPEG
Binary file added tests/assets/explore_dataset/monkey/2.JPEG
Binary file added tests/assets/explore_dataset/monkey/3.JPEG
Binary file added tests/assets/explore_dataset/monkey/4.JPEG
Binary file added tests/assets/explore_dataset/monkey/5.JPEG
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
8 changes: 2 additions & 6 deletions tests/unit/test_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -1685,15 +1685,11 @@ def setUp(self):
[
DatasetItem(
id=0,
media=Image.from_file(
path=os.path.join(self.data_path, "dog", "ILSVRC2012_val_00001698.JPEG")
),
media=Image.from_file(path=os.path.join(self.data_path, "dog", "0.JPEG")),
),
DatasetItem(
id=1,
media=Image.from_file(
path=os.path.join(self.data_path, "cat", "ILSVRC2012_val_00004894.JPEG")
),
media=Image.from_file(path=os.path.join(self.data_path, "cat", "0.JPEG")),
),
],
categories=self.categories,
Expand Down

0 comments on commit 62bb4f4

Please sign in to comment.