fiftyone.typesΒΆ
Module contentsΒΆ
FiftyOne types.
Classes:
|
Base type for datasets. |
Base type for datasets that represent an unlabeled collection of data samples. |
|
Base type for datasets that represent an unlabeled collection of images. |
|
Base type for datasets that represent an unlabeled collection of videos. |
|
Base type for datasets that represent a collection of data samples and their associated labels. |
|
Base type for datasets that represent a collection of images and their associated labels. |
|
Base type for datasets that represent a collection of videos and their associated labels. |
|
Base type for datasets that represent a collection of images and a set of associated classification labels. |
|
Base type for datasets that represent a collection of videos and a set of associated classification labels. |
|
Base type for datasets that represent a collection of images and a set of associated detections. |
|
Base type for datasets that represent a collection of videos and a set of associated video detections. |
|
Base type for datasets that represent a collection of images and a set of associated semantic segmentations. |
|
Base type for datasets that represent a collection of images and a set of associated multitask predictions. |
|
Base type for datasets that represent a collection of videos and a set of associated multitask predictions. |
|
Base type for datasets that contain grouped samples of any type(s). |
|
A directory of images. |
|
A directory of videos. |
|
A directory of media files. |
|
A labeled dataset consisting of images and their associated classification labels stored in a simple JSON format. |
|
A directory tree whose subfolders define an image classification dataset. |
|
A directory tree whose subfolders define a video classification dataset. |
|
A labeled dataset consisting of images and their associated classification labels stored as TFRecords. |
|
A labeled dataset consisting of images and their associated object detections stored in a simple JSON format. |
|
A labeled dataset consisting of videos and their associated temporal detections stored in a simple JSON format. |
|
A labeled dataset consisting of images and their associated object detections saved in COCO Object Detection Format. |
|
A labeled dataset consisting of images and their associated object detections saved in VOC format. |
|
A labeled dataset consisting of images and their associated object detections saved in KITTI format. |
|
A labeled dataset consisting of images and their associated annotations saved in Open Images format. |
|
A labeled dataset consisting of images and their associated annotations saved in Open Images format. |
|
A labeled dataset consisting of images and their associated annotations saved in Families in the Wild format. |
|
A labeled dataset consisting of images and their associated object detections saved in YOLOv4 format. |
|
A labeled dataset consisting of images and their associated object detections saved in YOLOv5 format. |
|
A labeled dataset consisting of images and their associated object detections stored as TFRecords in TF Object Detection API format. |
|
An labeled dataset consisting of images and their associated semantic segmentations stored as images on disk. |
|
A labeled dataset consisting of images and their associated labels stored in CVAT image format. |
|
A labeled dataset consisting of images and their associated object detections stored in CVAT video format. |
|
A labeled dataset consisting of images and their associated multitask predictions stored in ETA ImageLabels format. |
|
A labeled dataset consisting of videos and their associated labels stored in ETA VideoLabels format. |
|
A labeled dataset consisting of images and their associated multitask predictions saved in Berkeley DeepDrive (BDD) format. |
|
An image dataset whose image data and optional properties are stored in DICOM format. |
|
A video dataset composed of temporal activity detections from the ActivityNet dataset. |
|
An image or video dataset whose geolocation data and optional properties are stored in GeoJSON format. |
|
An image dataset whose image and geolocation data are stored in GeoTIFF format. |
|
A flexible CSV format that represents slice(s) of field values of a dataset as columns of a CSV file. |
|
A disk representation of an entire |
|
Legacy disk representation of an entire |
|
A labeled dataset consisting of images and their associated lables from the Places dataset <http://places2.csail.mit.edu/index.html>. |
-
class
fiftyone.types.
Dataset
ΒΆ Bases:
object
Base type for datasets.
Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
UnlabeledDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
Base type for datasets that represent an unlabeled collection of data samples.
Methods:
Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
-
class
fiftyone.types.
UnlabeledImageDataset
ΒΆ Bases:
fiftyone.types.dataset_types.UnlabeledDataset
Base type for datasets that represent an unlabeled collection of images.
Methods:
Returns the
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
UnlabeledVideoDataset
ΒΆ Bases:
fiftyone.types.dataset_types.UnlabeledDataset
Base type for datasets that represent an unlabeled collection of videos.
Methods:
Returns the
fiftyone.utils.data.importers.UnlabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.UnlabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.UnlabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.UnlabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.UnlabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.UnlabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
LabeledDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
Base type for datasets that represent a collection of data samples and their associated labels.
Methods:
Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
-
class
fiftyone.types.
LabeledImageDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledDataset
Base type for datasets that represent a collection of images and their associated labels.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
LabeledVideoDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledDataset
Base type for datasets that represent a collection of videos and their associated labels.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
ImageClassificationDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledImageDataset
Base type for datasets that represent a collection of images and a set of associated classification labels.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
-
class
fiftyone.types.
VideoClassificationDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledVideoDataset
Base type for datasets that represent a collection of videos and a set of associated classification labels.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
-
class
fiftyone.types.
ImageDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledImageDataset
Base type for datasets that represent a collection of images and a set of associated detections.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
-
class
fiftyone.types.
VideoDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledVideoDataset
Base type for datasets that represent a collection of videos and a set of associated video detections.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
-
class
fiftyone.types.
ImageSegmentationDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledImageDataset
Base type for datasets that represent a collection of images and a set of associated semantic segmentations.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
-
class
fiftyone.types.
ImageLabelsDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledImageDataset
Base type for datasets that represent a collection of images and a set of associated multitask predictions.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
-
class
fiftyone.types.
VideoLabelsDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledVideoDataset
Base type for datasets that represent a collection of videos and a set of associated multitask predictions.
Methods:
Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
-
class
fiftyone.types.
GroupDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
Base type for datasets that contain grouped samples of any type(s).
Methods:
Returns the
fiftyone.utils.data.importers.GroupDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.GroupDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.GroupDatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.GroupDatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
ImageDirectory
ΒΆ Bases:
fiftyone.types.dataset_types.UnlabeledImageDataset
A directory of images.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
VideoDirectory
ΒΆ Bases:
fiftyone.types.dataset_types.UnlabeledImageDataset
A directory of videos.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.UnlabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.UnlabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
MediaDirectory
ΒΆ Bases:
fiftyone.types.dataset_types.UnlabeledDataset
A directory of media files.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
FiftyOneImageClassificationDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageClassificationDataset
A labeled dataset consisting of images and their associated classification labels stored in a simple JSON format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
ImageClassificationDirectoryTree
ΒΆ Bases:
fiftyone.types.dataset_types.ImageClassificationDataset
A directory tree whose subfolders define an image classification dataset.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
VideoClassificationDirectoryTree
ΒΆ Bases:
fiftyone.types.dataset_types.VideoClassificationDataset
A directory tree whose subfolders define a video classification dataset.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
TFImageClassificationDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageClassificationDataset
A labeled dataset consisting of images and their associated classification labels stored as TFRecords.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
FiftyOneImageDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections stored in a simple JSON format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
FiftyOneTemporalDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.VideoDetectionDataset
A labeled dataset consisting of videos and their associated temporal detections stored in a simple JSON format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
COCODetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections saved in COCO Object Detection Format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
VOCDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections saved in VOC format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
KITTIDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections saved in KITTI format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
OpenImagesV6Dataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated annotations saved in Open Images format.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
OpenImagesV7Dataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated annotations saved in Open Images format.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
FIWDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
A labeled dataset consisting of images and their associated annotations saved in Families in the Wild format.
Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
OpenLABELImageDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageLabelsDataset
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
OpenLABELVideoDataset
ΒΆ Bases:
fiftyone.types.dataset_types.VideoLabelsDataset
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
YOLOv4Dataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections saved in YOLOv4 format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
YOLOv5Dataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections saved in YOLOv5 format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
TFObjectDetectionDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageDetectionDataset
A labeled dataset consisting of images and their associated object detections stored as TFRecords in TF Object Detection API format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
ImageSegmentationDirectory
ΒΆ Bases:
fiftyone.types.dataset_types.ImageSegmentationDataset
An labeled dataset consisting of images and their associated semantic segmentations stored as images on disk.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
CVATImageDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageLabelsDataset
A labeled dataset consisting of images and their associated labels stored in CVAT image format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
CVATVideoDataset
ΒΆ Bases:
fiftyone.types.dataset_types.VideoLabelsDataset
A labeled dataset consisting of images and their associated object detections stored in CVAT video format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
FiftyOneImageLabelsDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageLabelsDataset
A labeled dataset consisting of images and their associated multitask predictions stored in ETA ImageLabels format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
FiftyOneVideoLabelsDataset
ΒΆ Bases:
fiftyone.types.dataset_types.VideoLabelsDataset
A labeled dataset consisting of videos and their associated labels stored in ETA VideoLabels format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
BDDDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageLabelsDataset
A labeled dataset consisting of images and their associated multitask predictions saved in Berkeley DeepDrive (BDD) format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
DICOMDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageLabelsDataset
An image dataset whose image data and optional properties are stored in DICOM format.
See this page for importing datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
ActivityNetDataset
ΒΆ Bases:
fiftyone.types.dataset_types.FiftyOneTemporalDetectionDataset
A video dataset composed of temporal activity detections from the ActivityNet dataset.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledVideoDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledVideoDatasetExporter
class
-
-
class
fiftyone.types.
GeoJSONDataset
ΒΆ Bases:
fiftyone.types.dataset_types.LabeledDataset
An image or video dataset whose geolocation data and optional properties are stored in GeoJSON format.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
GeoTIFFDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageLabelsDataset
An image dataset whose image and geolocation data are stored in GeoTIFF format.
See this page for importing datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-
-
class
fiftyone.types.
CSVDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
A flexible CSV format that represents slice(s) of field values of a dataset as columns of a CSV file.
See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
FiftyOneDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
A disk representation of an entire
fiftyone.core.dataset.Dataset
stored on disk in a serialized JSON format along with its source media.See this page for importing datasets of this type, and see this page for exporting datasets of this type.
Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
LegacyFiftyOneDataset
ΒΆ Bases:
fiftyone.types.dataset_types.Dataset
Legacy disk representation of an entire
fiftyone.core.dataset.Dataset
stored on disk in a serialized JSON format along with its source media.Datasets of this type are read/written in the following format:
<dataset_dir>/ metadata.json samples.json data/ <filename1>.<ext> <filename2>.<ext> ... annotations/ <anno_key1>.json <anno_key2>.json ... brain/ <brain_key1>.json <brain_key2>.json ... evaluations/ <eval_key1>.json <eval_key2>.json ...
where
metadata.json
is a JSON file containing metadata associated with the dataset,samples.json
is a JSON file containing a serialized representation of the samples in the dataset,annotations/
contains any serializedfiftyone.core.annotations.AnnotationResults
,brain/
contains any serializedfiftyone.core.brain.BrainResults
, andevaluations/
contains any serializedfiftyone.core.evaluations.EvaluationResults
.Video datasets have an additional
frames/
directory that contains a serialized representation of the frame labels for each video in the dataset.Note
See
fiftyone.utils.data.importers.LegacyFiftyOneDatasetImporter
for parameters that can be passed to methods likeDataset.from_dir()
to customize the import of datasets of this type.Note
See
fiftyone.utils.data.exporters.LegacyFiftyOneDatasetExporter
for parameters that can be passed to methods likeSampleCollection.export()
to customize the export of datasets of this type.Methods:
Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.DatasetImporter
class for importing datasets of this type from disk.- Returns
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.DatasetExporter
class for exporting datasets of this type to disk.- Returns
-
-
class
fiftyone.types.
PlacesDataset
ΒΆ Bases:
fiftyone.types.dataset_types.ImageClassificationDataset
A labeled dataset consisting of images and their associated lables from the Places dataset <http://places2.csail.mit.edu/index.html>.
Methods:
Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.-
get_dataset_importer_cls
()ΒΆ Returns the
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class for importing datasets of this type from disk.- Returns
a
fiftyone.utils.data.importers.LabeledImageDatasetImporter
class
-
get_dataset_exporter_cls
()ΒΆ Returns the
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class for exporting datasets of this type to disk.- Returns
a
fiftyone.utils.data.exporters.LabeledImageDatasetExporter
class
-