We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The snippet below:
import fiftyone as fo dataset = fo.Dataset() dataset.add_sample( fo.Sample( filepath="image.jpg", shapes=fo.Polylines( polylines=[ fo.Polyline( tags=['tag1', 'tag2'], label='label1', points=[[(0, 0), (0, 1), (1, 1), (1, 0), (0, 0)]] ), ] ) ) ) dataset.get_dynamic_field_schema()
erroneously detects the following dynamic fields:
{ 'shapes.polylines.points[]': <fiftyone.core.fields.ListField object at 0x7f938808ac10>, 'shapes.polylines.points[][][]': <fiftyone.core.fields.IntField object at 0x7f936824cdc0>, }
I believe the fix here is that default list fields should not be inspected.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The snippet below:
erroneously detects the following dynamic fields:
I believe the fix here is that default list fields should not be inspected.
The text was updated successfully, but these errors were encountered: