https://github.com/jacobmarks/double-band-filter-plugin
Filter a float-valued field on two ranges simultaneously with this FiftyOne Plugin!
https://github.com/jacobmarks/double-band-filter-plugin
computer-vision data-centric-ai data-science fiftyone filtering-data plugins python
Last synced: 2 days ago
JSON representation
Filter a float-valued field on two ranges simultaneously with this FiftyOne Plugin!
- Host: GitHub
- URL: https://github.com/jacobmarks/double-band-filter-plugin
- Owner: jacobmarks
- Created: 2023-11-08T22:20:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T23:50:03.000Z (about 2 years ago)
- Last Synced: 2025-10-31T05:55:22.471Z (8 months ago)
- Topics: computer-vision, data-centric-ai, data-science, fiftyone, filtering-data, plugins, python
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Double Band Filter Plugin

This plugin provides an operator to filter a float-valued field on two ranges
simultaneously.
Choose a field from the drop-down, and then specify two ranges. The operator
will return all samples where the field value is in the first range or the
second range. Behind the scenes, this is implemented using FiftyOne
ViewExpressions and the `match()` method.
## Installation
```shell
fiftyone plugins download https://github.com/jacobmarks/double-band-filter-plugin/
```
## Operators
### `match_either_band`
Filter a float-valued field on two ranges simultaneously. The operator will
return all samples where the field value is in the first range or the second
range.