Brian Moore

Results 196 comments of Brian Moore

We haven't had time to add "native" HDF5 support yet. FiftyOne currently requires access to each individual image via the `filepath` field of each sample, which must be an image...

@qwertyman30 wow this is amazing! It's awesome that you dove in so deep to address your needs 🔥 💯 🥇 Like Ben mentioned, it just so happens that we were...

Hey @jasm37 we are very close to adding support for this. https://github.com/voxel51/fiftyone/pull/1825 and https://github.com/voxel51/fiftyone/pull/1826 are two alternatives we are considering for adding dynamic attributes to a dataset's schema. Once that...

In the meantime, the workaround is to construct the relevant view via Python and load it in `session.view` like so: ```py import fiftyone as fo from fiftyone import ViewField as...

Thanks for the feature request! For the benefit of others that may come across this, it is possible to include other fields via the [to_patches()](https://voxel51.com/docs/fiftyone/api/fiftyone.core.collections.html?highlight=to_patches#fiftyone.core.collections.SampleCollection.to_patches) API method (and the App...

> i was thinking that the data itself would be by reference and not duplicated. if it is duplicated i would think that filtering only the annotations that overlap would...

We could theoretically add an optional argument to `to_patches()` to include all overlapping patches in the view, but I'm not yet convinced that's actually something useful to add. Instead I'd...

Glad you're interested in contributing to the project! 🙌 I believe this issue contains the fix for your dev environment: https://github.com/voxel51/fiftyone/issues/2154

Hi @Etoye 👋 Thanks for the all the detailed information. While we're looking into proper distributed training support, let me mention a simple workaround: Since FiftyOne datasets are stored in...

For example, FiftyOne is integrated with PyTorch Lightning Flash, and that's how things are implemented there: https://github.com/PyTorchLightning/lightning-flash/blob/9e4fb62e0a7b2d3f265e574172bf88cc7b84924d/flash/core/data/data_source.py#L658-L689