Questions tagged [fiftyone]
24 questions
0
votes
1 answer
Specify response type for inline fragment graphql in js file
Here, inline fragment graphql is used. I'm not able to write the return type in the js file.
Graphql:
query MyQuery {
samples(dataset: "", view: "") {
edges {
node {
... on ImageSample {
id
}
... on…

prabin badyakar
- 1,636
- 2
- 16
- 24
0
votes
1 answer
ModuleNotFoundError: No module named 'fiftyone.zoo';
'import fiftyone'
import fiftyone as fo
import fiftyone.zoo as foz
dataset = foz.load_zoo_dataset("quickstart")
session = fo.launch_app(dataset)
i tried to install zoo and fiftyone.zoo and install just fiftyone and i upgrade pip and i install it…

taline fahad
- 1
- 2
0
votes
1 answer
How can I extract object segmentations from the coco dataset?
From the MSCOCO dataset segmentation annotations, how can I extract just the segmented objects themselves? For example, given an image of a person standing with a house in the background, how can I extract just the person themselves?
0
votes
0 answers
How do I import fiftyone data locally?
I am trying to import data from a fiftyone dataset. I have some code that does this.
The code:
!pip install "opencv-python-headless<4.3"
!pip install --upgrade pip setuptools wheel
!pip install fiftyone
import fiftyone as fo
import fiftyone.zoo as…

Programmer S
- 429
- 7
- 21
0
votes
1 answer
Serialize/deserialize image mask in FiftyOne App
I'd like to use the FiftyOne application for evaluating instance segmentation predictions. I used the the downloadable quickstart dataset for start and I created my own samples.json file for the ground truth and prediction data, which can be loaded…

Terrordrone
- 139
- 2
- 12
0
votes
1 answer
COCO dataset in fiftyone labelling problem
Hi guys i am downloading specific part of coco with fiftyone, only "detections" label type. But when i upload the data and label folder to cloud dataset transforming to segmentation polygon labelling what can i do for that?

Çağrı Kumaş
- 1
- 1
-1
votes
1 answer
Loading tiff images in fiftyone using ipynp
I am trying to load tiff images using fiftyone and python in ipynb notebook, but it just doesn't work. Anyone knows how to do it?

Joanna B
- 9
-1
votes
1 answer
Uploading file to s3 using python and fiftyone api
I am trying to create an automated pipeline that gets files from this api fiftyone and load it to s3. From what I saw the fiftyone package can only download it locally.
import fiftyone as fo
import fiftyone.zoo as foz
dataset =…

Amdbi
- 11
- 3
-2
votes
0 answers
clip_embeddings = [] for sample in dataset: clip_embedding = embedding_dict[sample['video']][sample['frameid']] clip_embeddings.append(clip_embedding)
KeyError Traceback (most recent call last)
Cell In[13], line 3
1 clip_embeddings = []
2 for sample in dataset:
----> 3 clip_embedding = embedding_dict[sample['video']][sample['frameid']]
4 …

L-o N-g
- 1