-
Notifications
You must be signed in to change notification settings - Fork 560
New issue
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
workaround mongodb bug in _get_samples_bytes() #2840
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## develop #2840 +/- ##
===========================================
+ Coverage 61.87% 61.90% +0.03%
===========================================
Files 259 259
Lines 43686 43721 +35
Branches 350 350
===========================================
+ Hits 27030 27065 +35
Misses 16656 16656
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for getting to the bottom of this! 🥇
Left one small suggestion for your consideration
# (Slot Based Execution) optimizes this away and incorrectly sums | ||
# the full document size, thus ignoring selected fields. A ticket | ||
# has been opened to resolve this bug. | ||
# https://jira.mongodb.org/browse/SERVER-75267 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did some reading on slot based execution, and it's possible this is the expected behavior.
Previous engine outputted documents at each stage, so $$ROOT would refer to the document of the projected fields in that stage, but with slot based, the $$ROOT is now the original document (no intermediate document created)
Hey! Query Execution engineer here, my team and I are working on SBE. Currently, query execution engine works in terms of documents. For example, in the aggregation language, every stage produces a document to be consumed by the next stage. SBE goes one step lower in abstraction layers and works in terms of values. Aggregation stages executed through SBE pass values to each other directly, without extra document materialization. This allows us to avoid many unnecessary computations and execute queries faster. As of now, we only use SBE for certain queries with $group and $lookup, but the intent is to use it across the board in the future.
https://www.reddit.com/r/mongodb/comments/v7uaso/what_does_the_slotbased_query_execution_engine_do/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An execution engine should not change functionality unless documented (it is not), so either way it is a bug IMO.
They may come back (if at all) and say yeah not gonna change that. In which case their documented way of getting total document size is just broken
Squashed commit of the following: commit 5854fd8bf0cfd31eacfac290b9a4d82c20be1795 Author: brimoor <[email protected]> Date: Wed Apr 5 15:55:08 2023 -0400 updating release notes commit 0cccf7c04f9da8d82a9e29b2b49b19cfd93356fd Merge: 4e1c81cbb 0f691834a Author: Brian Moore <[email protected]> Date: Wed Apr 5 15:53:47 2023 -0400 Merge pull request #2882 from voxel51/feature/more-dynamic-fields Adding support for list fields to dynamic schema methods commit 0f691834ab72b74d92eed23e3a8c480800342ba0 Merge: 2e717ebc3 4e1c81cbb Author: brimoor <[email protected]> Date: Wed Apr 5 15:34:58 2023 -0400 Merge branch 'release/v0.20.1' into feature/more-dynamic-fields commit 4e1c81cbbb21b417e429ce1e5e94184bd7a942be Author: brimoor <[email protected]> Date: Wed Apr 5 15:34:23 2023 -0400 fixing typos commit 2e717ebc30a1184117c34a4000898be51c4fa2e4 Author: brimoor <[email protected]> Date: Wed Apr 5 11:53:43 2023 -0400 updating tests commit 4c71864af246d38819273195ad99dc99ce9532c5 Author: brimoor <[email protected]> Date: Wed Apr 5 11:53:17 2023 -0400 typos commit 53d26bcdbf05c64b7bc21b312d47056622cbd4b3 Author: brimoor <[email protected]> Date: Wed Apr 5 11:32:53 2023 -0400 better errors commit 9481f8d7a3fdfd99ac5bce868568fa992ac2d22a Author: brimoor <[email protected]> Date: Wed Apr 5 11:19:49 2023 -0400 declare with generic field commit 06d4d725173f32c51fca3281a66431e0a60727ec Author: brimoor <[email protected]> Date: Wed Apr 5 11:14:51 2023 -0400 typos commit 9834c64977fb4260fcfffccdaf4e30812b4e7c35 Author: brimoor <[email protected]> Date: Wed Apr 5 11:08:18 2023 -0400 documenting dataset-level field addition commit 0aff2389eebba7b0ea7c65f7083998977001447a Author: brimoor <[email protected]> Date: Wed Apr 5 11:06:56 2023 -0400 documenting list_schema() aggregation commit e449b8041f0e3efe629926056fd655629aebab56 Author: brimoor <[email protected]> Date: Wed Apr 5 11:04:59 2023 -0400 adding unit test for nested dynamic field schemas commit 63aeb2826ff8a21037df08b3c0dfbaeb7f9f3fc6 Author: brimoor <[email protected]> Date: Wed Apr 5 11:03:35 2023 -0400 adding unit test for list subfield type declaration commit f147286f81d1e45e62d7362554c56ab84029a212 Author: brimoor <[email protected]> Date: Wed Apr 5 11:02:50 2023 -0400 adding ListSchema test commit 621ccaff04809f95d63352b5d9f507dfbeb32d9f Author: brimoor <[email protected]> Date: Wed Apr 5 11:01:57 2023 -0400 adding support for list fields to dynamic schema methods commit 7587d59ed64f7239416aa3c49d6c37e1719cd5ef Author: brimoor <[email protected]> Date: Wed Apr 5 11:00:02 2023 -0400 adding ListSchema aggregation commit 68524757c5625d66007f340985f47fb21ad7d576 Author: topher <[email protected]> Date: Tue Apr 4 20:41:06 2023 -0400 rollback strawberry-graphql commit ca48dbfedbb283d755e6cee5fd06edb7a718a099 Author: Benjamin Kane <[email protected]> Date: Tue Apr 4 18:00:18 2023 -0600 strawberry downgrade commit 10819449748359bbf43828c7f1bc0bcd32f9a3a0 Author: brimoor <[email protected]> Date: Tue Apr 4 15:34:40 2023 -0400 fixing typo commit 9db92233003a44765d80726f9e059d8f6a786de7 Author: brimoor <[email protected]> Date: Tue Apr 4 14:53:27 2023 -0400 adding release notes commit acde0ac9aaf9c186c23745d86b691215ff15e0ba Merge: 5bc9f8eae 5c84d272f Author: Sashank Aryal <[email protected]> Date: Tue Apr 4 13:47:31 2023 -0500 Merge pull request #2880 from voxel51/bug/heatmap-disk-2 on-disk heatmap bug part 2 commit 5c84d272f3eb1f1bec6a11bf16601c67419e352b Author: Sashank Aryal <[email protected]> Date: Tue Apr 4 13:34:35 2023 -0500 clip value and update normalization logic commit b6d5c5e469f6a4c95e2bd73216bda5175091206d Author: Sashank Aryal <[email protected]> Date: Tue Apr 4 13:08:09 2023 -0500 normalize mask targets color commit ebb5e16150d8555f840fe327db75997aa0b8471b Author: Sashank Aryal <[email protected]> Date: Tue Apr 4 12:28:25 2023 -0500 fix heatmap tooltip for multiple channels commit ad789bcdf49f2b55de46992294aed399266a73ac Author: Sashank Aryal <[email protected]> Date: Tue Apr 4 12:20:36 2023 -0500 fix heatmap with multiple channels commit 5bc9f8eaea61d2cf19dca96d4932222b004dd38d Author: Benjamin Kane <[email protected]> Date: Tue Apr 4 10:04:36 2023 -0600 don't string if null (#2879) commit a3bf74029ee6a26bdec586b8e15d3871b6ac67ad Author: Benjamin Kane <[email protected]> Date: Tue Apr 4 09:19:24 2023 -0600 no supports prompts (#2878) commit b605db2ea304d962baa9e0944592dd93ef902b23 Merge: db4b8e4c1 5e551fb3b Author: brimoor <[email protected]> Date: Mon Apr 3 23:08:19 2023 -0400 Merge branch 'develop' into release/v0.20.1 commit 5e551fb3b5e71772a94175d7bd67cd27a4bbbc8d Merge: 6ea85a4ac ec37fe318 Author: Brian Moore <[email protected]> Date: Mon Apr 3 23:04:08 2023 -0400 Merge pull request #2863 from voxel51/bugfix/dynamic-list-fields Adding support for dynamically inferring fields on embedded lists and documents commit 6ea85a4acd54770a15d64dfd139387204df6dff9 Merge: 8c99c0191 9d62848ac Author: Brian Moore <[email protected]> Date: Mon Apr 3 19:42:53 2023 -0400 Merge pull request #2851 from voxel51/bugfix/iss-2850 Fixing grouped video merge bug commit 8c99c01914540cba6d447bbf91543ca6d10a5229 Merge: cb8aed94a 6382d59db Author: Brian Moore <[email protected]> Date: Mon Apr 3 19:42:32 2023 -0400 Merge pull request #2846 from voxel51/bugfix/embeddings-color-by Pulling correct data when viewing patches with a sample embeddings plot commit cb8aed94ada39ea556d6a31c8fd1fa4c13039157 Merge: 84d6ea3f2 4f9a4f73f Author: Brian Moore <[email protected]> Date: Mon Apr 3 19:42:06 2023 -0400 Merge pull request #2844 from voxel51/bugfix/safe-merge-cleanup Avoid errors during failed merge cleanup commit 84d6ea3f295520f8b00269f4abccb448aeca501e Merge: 920fd4183 ebe2ced05 Author: Brian Moore <[email protected]> Date: Mon Apr 3 19:41:30 2023 -0400 Merge pull request #2837 from voxel51/bugfix/set-values-test Don't add field that conflicts with existing field values commit 920fd4183acc8cac39a8f51f7d76bdbea729d203 Author: Benjamin Kane <[email protected]> Date: Mon Apr 3 15:03:06 2023 -0600 Fix client serialization initialization (#2877) * same approach as post_event * lint commit db4b8e4c14d90f5c54cc2da6e5d9c6f1730dad2c Merge: 795c9bcdc 9f6427354 Author: brimoor <[email protected]> Date: Mon Apr 3 16:53:42 2023 -0400 Merge branch 'develop' into release/v0.20.1 commit 795c9bcdceaf667c8d6f65a88e548958b1de5b0c Author: brimoor <[email protected]> Date: Mon Apr 3 16:52:56 2023 -0400 tweak commit 261c9fef77320f6951f4bc6d75beb8c844a0a4b1 Author: brimoor <[email protected]> Date: Mon Apr 3 16:52:25 2023 -0400 bumping eta version commit 9f6427354d35d20d761ef2fb495e75387d22da9b Merge: 200f001db 3c38e91f9 Author: Brian Moore <[email protected]> Date: Mon Apr 3 15:57:13 2023 -0400 Merge pull request #2868 from voxel51/feature/list-datasets-glob Adding support for listing datasets matching a glob pattern commit 200f001dbdb5a73a2afd7e9761066fc433124143 Merge: 901165977 e2fa79386 Author: Brian Moore <[email protected]> Date: Mon Apr 3 14:33:55 2023 -0400 Merge pull request #2874 from voxel51/bugfix/load-saved-view Fixing bug when loading saved view in App commit 9011659779fd4737222bc440d951604c20e550b4 Merge: e43ef103f eef797e75 Author: Sashank Aryal <[email protected]> Date: Mon Apr 3 12:16:48 2023 -0500 Merge pull request #2872 from voxel51/bug/heatmap-disk add support for jpg segmentations / heatmaps commit e2fa79386fc6f6b0fa316f8198d509fa0d8ac296 Author: brimoor <[email protected]> Date: Mon Apr 3 12:58:17 2023 -0400 fixing bug when loading saved view in App commit 3c38e91f935c3c91af3cd3067cb143cbd867831d Author: brimoor <[email protected]> Date: Mon Apr 3 12:29:24 2023 -0400 adding quotes commit eef797e75c97d087c95b2f2a2787ab756417c29d Author: Sashank Aryal <[email protected]> Date: Mon Apr 3 11:14:23 2023 -0500 use png as default commit 7e13b383a46b5f1cf1c82ea8325f07e8d063934d Merge: 7756c84ba e43ef103f Author: brimoor <[email protected]> Date: Mon Apr 3 12:08:57 2023 -0400 Merge branch 'develop' into release/v0.20.1 commit e43ef103f5f13a5aab62ca4f361e3d0c469884e3 Author: brimoor <[email protected]> Date: Mon Apr 3 12:08:35 2023 -0400 removing ndjson requirement commit 7756c84ba05630d61d9fd51bc14532d9688ab2c6 Author: brimoor <[email protected]> Date: Mon Apr 3 12:07:08 2023 -0400 bumping versions commit 178c1d786468e2f5638ae23379fac4bfbe4607d7 Author: brimoor <[email protected]> Date: Mon Apr 3 12:04:47 2023 -0400 adding initial draft of release notes commit 89fc5130427f32c8c0171e8f5031ec2b159132c1 Merge: ccb1a861f 9b5c97bc2 Author: Brian Moore <[email protected]> Date: Mon Apr 3 11:33:20 2023 -0400 Merge pull request #2815 from voxel51/azure Documenting Teams Azure support commit fe5e3a3178de5bd8706a6d925830d2c7ab3a29b3 Author: Sashank Aryal <[email protected]> Date: Mon Apr 3 10:18:04 2023 -0500 fix jpg decode error commit ccb1a861f6374ac544dcbe469e46c29cd82198f5 Merge: 2e26e4915 ab4b55d86 Author: Brian Moore <[email protected]> Date: Mon Apr 3 10:07:44 2023 -0400 Merge pull request #2862 from voxel51/bugfix/brain-install add --upgrade to fiftyone-brain source install commit 7fdea9f286f4666078049ac44914b37873f0a2f7 Author: brimoor <[email protected]> Date: Fri Mar 31 18:37:53 2023 -0400 tweaks commit 4576b92120ecf7db1d3c80e5520d8545a1950091 Author: brimoor <[email protected]> Date: Fri Mar 31 18:28:57 2023 -0400 adding support for listing datasets matching a glob pattern commit 2e26e49150a54192591029b7d892d7bcbc62388c Merge: a79439655 ff3518d7c Author: Brian Moore <[email protected]> Date: Fri Mar 31 12:12:44 2023 -0400 Merge pull request #2864 from voxel51/feature/TEAMS-1071-replace-gpl Replace ndjson and patool packages with non-GPL code commit a79439655c20f115fcedf5a72b78507747bd19ca Author: Lanny W <[email protected]> Date: Fri Mar 31 10:53:57 2023 -0500 Bugfix: a user can save a float/datetime object in field.info and see that in the tootlip (#2861) * use json_util * trying to debug * display datetime object in field.info" * update datetime renderer to new format * handle float * fix client serialization, use common datetime app formatting * fix key --------- Co-authored-by: kacey <[email protected]> Co-authored-by: Benjamin Kane <[email protected]> commit ff3518d7c438ce8dabcc0c5c7f7d992bd730619b Author: trinity <[email protected]> Date: Thu Mar 30 15:01:41 2023 -0700 removed unnecessary jsonlines requirement commit ab4b55d86f7dc7fd65182697bda7854b8b324011 Merge: 9ffb687de f67b3921f Author: brimoor <[email protected]> Date: Thu Mar 30 15:51:28 2023 -0400 Merge branch 'develop' into bugfix/brain-install commit ec37fe3181cfdae5e9ef7dca48e4a38987744011 Author: brimoor <[email protected]> Date: Thu Mar 30 15:24:56 2023 -0400 linting commit 362fd79c09de67b0bd9e530d3cda39fb3ab15c45 Author: brimoor <[email protected]> Date: Thu Mar 30 15:24:07 2023 -0400 linting commit 729899ac87e8fc26de1759376aa31e1bb30abb26 Author: brimoor <[email protected]> Date: Thu Mar 30 15:21:35 2023 -0400 adding test for frame fields commit 803c0cf1535f80f3cc499f458423d7178aa6398d Author: brimoor <[email protected]> Date: Thu Mar 30 15:17:38 2023 -0400 adding unit test commit 7ac0e2c50a41da10edbc923e6e8ebe696a3f7515 Author: brimoor <[email protected]> Date: Thu Mar 30 15:16:59 2023 -0400 adding missing documentation commit 2763b67ccfecff44bdfcb7b2d12b6ebf9e0ee34f Author: brimoor <[email protected]> Date: Thu Mar 30 15:03:08 2023 -0400 handling nested dynamic fields commit 887a3200880d1b368655f19d8a3f5c8aae495242 Author: brimoor <[email protected]> Date: Wed Mar 29 13:51:30 2023 -0400 adding support for dynamically inferring fields on embedded lists and documents commit 9e756a68dd14755a059e7795a2d66fbd23b1fc14 Author: trinity <[email protected]> Date: Wed Mar 29 10:35:29 2023 -0700 removed comment commit ed3d5f08401913ff6f14f168f00b067dfe8d108f Author: trinity <[email protected]> Date: Wed Mar 29 10:33:52 2023 -0700 swapped ndjson for jsonlines, fixed labelbox create_project breaking change commit f67b3921f5f875743e1b88134192b7a1c79f5682 Author: brimoor <[email protected]> Date: Wed Mar 29 12:51:06 2023 -0400 undo because we may want to load None-named datasets for debugging purposes commit 9ffb687de26c04b72624a965483870fc051d34b1 Author: brimoor <[email protected]> Date: Wed Mar 29 12:49:54 2023 -0400 add --upgrade to fiftyone-brain source install commit 48d0b9b4679854f9b2b8c9f265efd059dd790cd2 Merge: f60f5308b 248bbd5c2 Author: Brian Moore <[email protected]> Date: Wed Mar 29 00:06:48 2023 -0400 Merge pull request #2855 from voxel51/bugfix/dynamic-schemas Fixing a bug in dynamic schema expansion commit f60f5308b6ee708857c163426df1db798a9c87d1 Author: Kacey <[email protected]> Date: Tue Mar 28 15:00:54 2023 -0700 Prevent loading a dataset without a name in the sdk (#2859) * only load if name exists * check str type * update message commit e2333c41b38b8965d455002277369ade9a57dffd Merge: 3b689a484 dba023487 Author: Brian Moore <[email protected]> Date: Tue Mar 28 14:42:38 2023 -0400 Merge pull request #2853 from voxel51/bugfix/iss-2852 Fixing #2852 commit 3b689a48411f0bd3e234f60d219e7252577c00f0 Merge: 3f1eec904 0cbfe8a14 Author: Sashank Aryal <[email protected]> Date: Tue Mar 28 11:25:26 2023 -0500 Merge pull request #2839 from voxel51/e2e automated e2e tests commit 0cbfe8a14da53bde370039547caf0625b38c1ba7 Author: Sashank Aryal <[email protected]> Date: Tue Mar 28 10:28:33 2023 -0500 correct another typo commit 98b8c9de60b690feed8367f9746bd5ed72b78bc9 Author: Sashank Aryal <[email protected]> Date: Tue Mar 28 10:28:05 2023 -0500 correct typo commit 248bbd5c268f734e7363972f77d619f1c5f0afa8 Author: brimoor <[email protected]> Date: Tue Mar 28 00:35:08 2023 -0400 fixing a bug in dynamic schema expansion commit dba0234870b668aefa60d1ea15f1157b6ada3f0d Author: brimoor <[email protected]> Date: Mon Mar 27 18:30:35 2023 -0400 adding cpu() commit 9d62848ac438c73a507fc91224d4bb629cd018a2 Author: brimoor <[email protected]> Date: Mon Mar 27 18:22:48 2023 -0400 fixing grouped video merge bug commit 3f1eec904473a9d5a9dce474912a76f0e59c789a Merge: 29670105b 979702e41 Author: Brian Moore <[email protected]> Date: Mon Mar 27 16:56:56 2023 -0400 Merge pull request #2848 from voxel51/bugfix/iss-2845 Fixing #2845 commit 29670105bbfb8a23b45c23cae3a9c91a783fabda Author: Benjamin Kane <[email protected]> Date: Mon Mar 27 14:50:54 2023 -0600 Hidden results and server MatchLabels fix (#2849) * trunder for server hidden results, omit new_field when is_matching * update underscores commit 979702e414add1d9b1174567c9c78f83f3abe72c Author: brimoor <[email protected]> Date: Mon Mar 27 11:16:05 2023 -0400 Fixing #2845 commit c305a9d04c1fbda39aaa9d62452f810e198910c3 Merge: 64cb057d3 e94f15618 Author: Brian Moore <[email protected]> Date: Mon Mar 27 10:44:25 2023 -0400 Merge pull request #2841 from NeoKish/fix-datasets-link-pr Updated the source urls for Caltech 101 and 256 datasets commit 64cb057d3df959ed4020bcf405cbb5c1f159b69f Merge: 2c2f4aa00 de68d0790 Author: Brian Moore <[email protected]> Date: Mon Mar 27 10:44:09 2023 -0400 Merge pull request #2842 from NeoKish/fix-datasets-typo-pr Fixed with correct dataset name commit 6382d59db6a4ea89f2df3d70257c18a32b494879 Author: brimoor <[email protected]> Date: Mon Mar 27 10:40:59 2023 -0400 pulling correct data when viewing patches with a sample embeddings plot commit 4f9a4f73fbb31a669d2bb50a2527624c2ff6845a Author: brimoor <[email protected]> Date: Mon Mar 27 09:32:56 2023 -0400 only drop index if it exists commit de68d079077d9121b16405f220ca6f3326856c6c Author: Kishan Savant <[email protected]> Date: Sun Mar 26 22:22:33 2023 +0530 Fixed with correct dataset name commit e94f15618e00d53e00efb5121732a4df9f3a0033 Author: Kishan Savant <[email protected]> Date: Sun Mar 26 21:58:21 2023 +0530 Updated the source urls for Caltech 101 and 256 datasets commit 2c2f4aa00518779622ccabd99019e76b5da32f64 Author: swheaton <[email protected]> Date: Fri Mar 24 20:36:38 2023 -0400 workaround mongodb bug in _get_samples_bytes() (#2840) * workaround mongodb bug in _get_samples_bytes() * split tests out commit ae603c9fe42eeb3bc04ad8d2cf2f9dd826eafc7d Author: Sashank Aryal <[email protected]> Date: Fri Mar 24 14:52:56 2023 -0500 add clarification for comment commit a7a67722c1ac341c4734f2eb90769a8e7671ea87 Author: Eric Hofesmann <[email protected]> Date: Fri Mar 24 15:13:27 2023 -0400 Update blog link in README.md (#2838) commit 8f2d81cf238e8d82d91da74bf988de03f28cbc8b Author: Sashank Aryal <[email protected]> Date: Fri Mar 24 13:40:32 2023 -0500 remove unused block commit 2b70b14f922b4a8ae494568c05449687236c8d57 Author: Sashank Aryal <[email protected]> Date: Fri Mar 24 13:33:50 2023 -0500 remove func for getting new div in flashlight commit 77fee0dc0f7e42fc99f6ce8875abbfc0ea1afaf8 Author: Sashank Aryal <[email protected]> Date: Fri Mar 24 13:32:41 2023 -0500 remove cypress-visual-regression from app deps commit 45a03a16daef66e400d6254008f64a8622951732 Author: Sashank Aryal <[email protected]> Date: Fri Mar 24 13:29:31 2023 -0500 cleanup readme commit 8ec5242abdc3a4d159a384aa24a39615b631993c Author: Sashank Aryal <[email protected]> Date: Thu Mar 23 17:18:52 2023 -0500 add more automated tests for group modal commit 1c5fe00220e1d1d40edef25e183a0a6c1a5ebbe8 Author: Sashank Aryal <[email protected]> Date: Thu Mar 23 16:44:34 2023 -0500 use different cypress tag based on if flashlight is horizontal or not commit 7d7f82c6183538bca0aa0380c334e8d33fc9636f Author: Sashank Aryal <[email protected]> Date: Thu Mar 23 14:43:20 2023 -0500 add more data-cy tags in sidebar and modal commit 6bed30ecbaa59922e071d9ed4e6cd42558a178dd Author: Sashank Aryal <[email protected]> Date: Wed Mar 22 23:18:28 2023 -0500 click on group modal commit d72a0d05c253a0d2ad9c615b60977dad8e95c0aa Author: Sashank Aryal <[email protected]> Date: Wed Mar 22 23:07:33 2023 -0500 begin writing tests for group modal commit 339489fed5b1e8e29b63d996ddd583dde943a55f Author: Sashank Aryal <[email protected]> Date: Wed Mar 22 22:10:14 2023 -0500 remove diff from vcs commit 2123f57ba3f760296d97b85ccd24e61f7a1b114d Author: Sashank Aryal <[email protected]> Date: Wed Mar 22 22:09:55 2023 -0500 add diff folder to gitignore commit 8d0a88951a237d0435ba3fadfdcdad192bb532f8 Author: Sashank Aryal <[email protected]> Date: Wed Mar 22 10:33:23 2023 -0500 add cypress visual regression, remove percy commit cabeb6eefe36fb4d9d94bcda3eab4667305a9cd1 Author: Sashank Aryal <[email protected]> Date: Tue Mar 21 18:39:11 2023 -0500 more readme commit 0cd8644f67a05139a840a864a603efb1b776013d Author: Sashank Aryal <[email protected]> Date: Tue Mar 21 13:52:39 2023 -0500 viewport width and height are finally correct commit d29ea895c20cec136dacd8336723a9d61a4b002c Author: Sashank Aryal <[email protected]> Date: Tue Mar 21 13:25:41 2023 -0500 add ability to pause between test suites commit 8b22b1440e4bd4da70de4e834d23cf971aa4ec75 Author: Sashank Aryal <[email protected]> Date: Tue Mar 21 09:25:09 2023 -0500 more pointcloud testing commit 720c18f72c54461909ee5b8fea25ccf872affb2c Author: Sashank Aryal <[email protected]> Date: Mon Mar 20 23:35:18 2023 -0500 add percy commit 9cfb1fdc621e03a92bd0fecd4ea65990178c56a2 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 18:17:40 2023 -0500 add screenshot testing for pointclouds commit 12b780a0716b957c7eed88f9b9c3b7f198693a5f Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:24:44 2023 -0500 entrypoint commit e290de8950e20ddb8feb73f2d68ed121a1013388 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:24:33 2023 -0500 add fiftyone tasks and hello world specs commit 271b037385599c694edd421b9e94d665b3fcfca9 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:24:02 2023 -0500 add fiftyone commands commit 951d5663a9c4584500d8f4b2bce7aafc1676add9 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:23:23 2023 -0500 add python runner commit e8e1304370c0105acf450b558403702d13fdba20 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:22:58 2023 -0500 update readme commit 7df6fed44f66c1fb412898c4c9125aa37eec1178 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:22:36 2023 -0500 more dev friendliness commit 0e698f53b58f875ecd5997e78958c34e916b6ffe Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 16:21:49 2023 -0500 add basic cypress scaffolding commit 7d486c624ae92165e9be7abce4eeae10454e947e Author: Ritchie Martori <[email protected]> Date: Thu Mar 16 10:44:44 2023 -0500 bootstrap e2e Co-authored by: ritch <[email protected]> commit 2a4484a52ecf021c301251b6b7469a91ea59fa8d Author: Benjamin Kane <[email protected]> Date: Fri Mar 24 11:10:04 2023 -0600 FiftyOne V2 GraphQL Boilerplate (#2750) * graphql boilerplate * update strawberry * __init__ * codeowners * update req * rm * codeowners working commit 9b5c97bc2f442d513fc27d47440b7828d192b48a Author: brimoor <[email protected]> Date: Fri Mar 24 12:18:37 2023 -0400 documenting AZURE_ALIAS commit ebe2ced05af47f591e85379027ef205cfad8e328 Author: brimoor <[email protected]> Date: Fri Mar 24 00:09:17 2023 -0400 don't add field that conflicts with existing field values commit c595e5c8b08b795c102a27cd3cd8b57f03c3b588 Merge: e7778d62c e9c2d2b0f Author: brimoor <[email protected]> Date: Wed Mar 22 23:51:35 2023 -0400 Merge branch 'develop' into azure commit e9c2d2b0f59ccdb50b3a828552b664d989af098b Merge: db2aeb46e e64541e3b Author: Brian Moore <[email protected]> Date: Wed Mar 22 14:55:08 2023 -0400 Merge pull request #2805 from voxel51/release/v0.20.0 Release v0.20.0 commit e64541e3bf1d0e2da174d2d5bb5f73e163222994 Author: Benjamin Kane <[email protected]> Date: Wed Mar 22 11:24:23 2023 -0600 return on no bbox commit e7ef4049b149f8266aa49f02541b0a18ada513e7 Author: Benjamin Kane <[email protected]> Date: Wed Mar 22 11:02:19 2023 -0600 mapResponse update commit 29b0711467e1bd91762e29279e0488fd9ff04cd4 Merge: 8e2467a5d 313b9c1c1 Author: Brian Moore <[email protected]> Date: Wed Mar 22 11:55:36 2023 -0400 Merge pull request #2831 from voxel51/fetch-fix Fix styles fetching for notebook screenshots commit 313b9c1c1fa4a9315034f1b62e6c4400df6b676e Author: Benjamin Kane <[email protected]> Date: Wed Mar 22 08:39:59 2023 -0600 fix styles fetching commit 8e2467a5dc509abd4c8d6c852b676fee7bae46b7 Author: brimoor <[email protected]> Date: Wed Mar 22 10:18:13 2023 -0400 reverting #2828 commit 9927f2f8b9eb3d4d1441102caf8dafdba12288a8 Merge: 5f60a1938 db2aeb46e Author: brimoor <[email protected]> Date: Wed Mar 22 10:17:15 2023 -0400 Merge branch 'develop' into release/v0.20.0 commit db2aeb46ec3d403e299f2ad3278f59a70afafada Merge: 6ea75ddb3 b8dbb93d1 Author: Brian Moore <[email protected]> Date: Wed Mar 22 10:16:44 2023 -0400 Merge pull request #2829 from voxel51/ignore-spaces Ignore spaces when sorting by similarity commit 5f60a19386cf653534e05d37d7f30039eb7fc8ef Author: brimoor <[email protected]> Date: Wed Mar 22 10:16:19 2023 -0400 adding Teams release notes from previous releases commit b8dbb93d1a352f5bf4a27b92ad476a70390409e3 Author: Benjamin Kane <[email protected]> Date: Wed Mar 22 07:47:45 2023 -0600 ignore spaces commit c4368ea78ce8cd7d2965ff962a7f2d0070d8079f Author: Lanny W <[email protected]> Date: Wed Mar 22 08:35:42 2023 -0500 add state back (#2828) commit be95ddcaeb9e46d023c9338f0bc0d80b778ad971 Author: brimoor <[email protected]> Date: Wed Mar 22 09:00:14 2023 -0400 typo commit 8024b3c052be2faaa8aabf6085102e9ab9153370 Author: brimoor <[email protected]> Date: Wed Mar 22 01:43:33 2023 -0400 added 0.20 release notes commit 40453e0210b1d313e3007b904da1a86df6f4bd12 Author: brimoor <[email protected]> Date: Tue Mar 21 22:41:51 2023 -0400 don't raise errors if brain method can't be parsed commit 52bf9f60b0aa7556b970b858e1ef131801f7ba41 Merge: 61a2dd3d1 6ea75ddb3 Author: brimoor <[email protected]> Date: Tue Mar 21 18:11:39 2023 -0400 Merge branch 'develop' into release/v0.20.0 commit 6ea75ddb3314aa1450494e8d4872dde0d8511c34 Merge: 75acb79de 7c216e0bc Author: Brian Moore <[email protected]> Date: Tue Mar 21 18:10:18 2023 -0400 Merge pull request #2821 from voxel51/sasaryal/font-bug more explicit font declaration for point cloud size input commit 61a2dd3d1326d63e0856702ed9748e44a519fbc6 Author: Benjamin Kane <[email protected]> Date: Tue Mar 21 13:25:15 2023 -0600 Release fixes (#2823) * fix sorting * fix sorting, update sample, frame masks * bug commit 7c216e0bcc36c0744bcf26ea5282e721fbc1a3fb Author: Sashank Aryal <[email protected]> Date: Tue Mar 21 12:23:00 2023 -0500 add comment for important commit c2c4eeecb34e1f015dd152f94cd55be04f95170e Author: brimoor <[email protected]> Date: Tue Mar 21 11:30:31 2023 -0400 bumping desktop version commit dab3735e66698e20fe869766997275a3eee3962b Merge: 29c8edc42 75acb79de Author: brimoor <[email protected]> Date: Tue Mar 21 11:28:10 2023 -0400 Merge branch 'develop' into release/v0.20.0 commit 75acb79de8362efaf02d79fe2697e5338106606c Author: brimoor <[email protected]> Date: Tue Mar 21 11:27:26 2023 -0400 bumping fiftyone-brain and voxel51-eta versions commit 29c8edc42d14b57941c578ef0a14a70d0eab0242 Author: brimoor <[email protected]> Date: Tue Mar 21 11:26:03 2023 -0400 starting release notes commit 4c3d03f92f0cef34abf4a099af9740775fcd8e06 Author: Sashank Aryal <[email protected]> Date: Tue Mar 21 09:50:02 2023 -0500 more explicit font declaration commit aa21424bf7de0f8b02acfae570b3e590de18e540 Merge: e6c3f5423 c7808ee5e Author: brimoor <[email protected]> Date: Tue Mar 21 10:32:40 2023 -0400 Merge branch 'develop' into release/v0.20.0 commit c7808ee5efd5bd96c2f1ec8d0266c4ef01fa0b27 Merge: c13485b2c 0cec60630 Author: Brian Moore <[email protected]> Date: Tue Mar 21 10:25:37 2023 -0400 Merge pull request #2772 from voxel51/run-updates Run updates commit e6c3f54238d31f4cddc09e14635406d658cc1fa1 Merge: 511551399 f5f2d8150 Author: Brian Moore <[email protected]> Date: Tue Mar 21 10:18:52 2023 -0400 Merge pull request #2820 from voxel51/tag-labels Tagging fixes commit c13485b2c24014340e38bf8c86dce533af653970 Merge: fb2773a5a b84385af3 Author: Jacob Marks <[email protected]> Date: Mon Mar 20 22:32:45 2023 -0700 Merge pull request #2818 from voxel51/point-e-tutorial Point-E Tutorial commit b84385af319ed3d16c1abbcfbb6622dbb9aea3df Author: Jacob Marks <[email protected]> Date: Mon Mar 20 22:09:22 2023 -0700 remove unused file commit 38b4b98219795a45f798abfbfdc885437d3df33a Author: Jacob Marks <[email protected]> Date: Mon Mar 20 22:01:03 2023 -0700 update tagging bad samples gif commit 72f33e01a1b00ce0157bb6ef5abe998f3f74362b Author: Jacob Marks <[email protected]> Date: Mon Mar 20 21:48:13 2023 -0700 updated orientation tagging gif commit 6db24bb364223c331b20be461ec3b062b1577f60 Author: Jacob Marks <[email protected]> Date: Mon Mar 20 21:20:49 2023 -0700 updating projections to RGB commit 5115513996766801afc61e7df3b37f117a23ff4d Merge: 7d6fc4b2e fb2773a5a Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 17:42:16 2023 -0600 Merge branch 'develop' into release/v0.20.0 commit f5f2d81506c994b66623d9d27cc47c02c914d6d7 Merge: e44bb8c69 7d6fc4b2e Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 17:41:32 2023 -0600 Merge branch 'release/v0.20.0' into tag-labels commit e44bb8c697eb272a544e1ea52551bfe90353dd89 Merge: baa471a13 fb2773a5a Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 17:37:44 2023 -0600 Merge branch 'develop' into tag-labels commit baa471a13b1338e92a3c4d7a66507733fd8dde35 Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 17:28:07 2023 -0600 fix group mode commit 7f3c3b575a8a878174a596ce3bd6ce5fcb1bce3a Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 17:20:21 2023 -0600 fix tagging commit fb2773a5a2bd0175d18e10aff0071d4073f0ddd1 Merge: 9f7603dfe 910f6c2cf Author: Jacob Marks <[email protected]> Date: Mon Mar 20 16:04:22 2023 -0700 Merge pull request #2819 from voxel51/sasaryal/bounds fix bounds issue commit 79d4a8a502126242749a48cadd514ae3aeb1e9e5 Author: Jacob Marks <[email protected]> Date: Mon Mar 20 15:43:21 2023 -0700 changed rubber duck to headphones commit 9f7603dfe7b3eb187d91d8e22e764ccd9043ae95 Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 16:38:53 2023 -0600 fix values search (#2817) commit 7d6fc4b2e1af5dbc178a1023eb766042d74fa746 Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 16:38:30 2023 -0600 Metadata tweaks (#2816) * metadata tweaks * rm log commit 910f6c2cf02d9e202e286547d64382351bc6c90c Author: Sashank Aryal <[email protected]> Date: Mon Mar 20 17:23:04 2023 -0500 remove debugger commit 33f6575801a54c97a76a34d6e89243f4a157cd94 Author: Sashank Aryal <[email protected]> Date: Mon Mar 20 17:22:25 2023 -0500 fix bounds issue commit 7da8008586a11384c5a4fe34b9620b0d53f82436 Author: Jacob Marks <[email protected]> Date: Mon Mar 20 14:09:00 2023 -0700 adding pointe standalone example commit e238c7b278702a59df6e3d116392bde3b27ea67a Merge: cfc706645 0cec60630 Author: brimoor <[email protected]> Date: Mon Mar 20 16:58:35 2023 -0400 Merge branch 'run-updates' into release/v0.20.0 commit 0cec6063057ac5c157b1a2d7c4696fd44cc0830d Merge: b0faad78b ffe772354 Author: brimoor <[email protected]> Date: Mon Mar 20 16:58:21 2023 -0400 Merge branch 'develop' into run-updates commit 12cfa2bf0645bc8470c99da46f72e03ac551bd75 Author: Jacob Marks <[email protected]> Date: Mon Mar 20 13:45:52 2023 -0700 removing space commit a02636ec7198805fd47668efb47a065c1cdf2eae Author: Jacob Marks <[email protected]> Date: Mon Mar 20 13:35:43 2023 -0700 adding in new graphics and minor edits commit 09ffc25d82fc2eeeb0ce63b862d94852442bcc91 Merge: ee7dd5a6b ffe772354 Author: Jacob Marks <[email protected]> Date: Mon Mar 20 13:04:52 2023 -0700 Merge branch 'develop' into point-e-tutorial commit cfc706645c38aef8f4a7a8fe46468663965aad74 Merge: a863c1758 ffe772354 Author: Benjamin Kane <[email protected]> Date: Mon Mar 20 11:32:02 2023 -0600 Merge branch 'develop' into release/v0.20.0 commit ffe7723543f020eedd0ae13e54e549675922d1b1 Author: imanjra <[email protected]> Date: Sun Mar 19 15:54:31 2023 -0400 fix issue with clearing sample selection commit 7bfc314cb5a7a533bf4b639aaf8866c48d6197bb Merge: e08a57217 2710458f0 Author: Sashank Aryal <[email protected]> Date: Mon Mar 20 12:06:31 2023 -0500 Merge pull request #2811 from voxel51/sasaryal/regression fix regression commit e7778d62c054438fc39a0db60d4699ac1fbebdbc Author: brimoor <[email protected]> Date: Mon Mar 20 10:36:25 2023 -0400 tweaks commit 32451ac5ec017026f2e59965b39af25f3527517a Author: brimoor <[email protected]> Date: Mon Mar 20 10:29:50 2023 -0400 typos commit e5c3a2b4a3c79fdf3a0336ff48f9866e974412dd Author: brimoor <[email protected]> Date: Mon Mar 20 10:26:17 2023 -0400 documenting Azure credentials commit ee7dd5a6bdecb22e3a843312afed1cd3a3d84af7 Author: Jacob Marks <[email protected]> Date: Sun Mar 19 15:13:55 2023 -0700 added quotation mark and changed shading mode commit 2710458f006f16861354fbcc7644e72d5c050642 Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 21:43:47 2023 -0500 fix regression commit e08a57217e22f686870eb5f7267beba10afb8a6a Merge: 03bdbf448 b5d7a16d2 Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 20:09:12 2023 -0500 Merge pull request #2809 from voxel51/sashank/looker3d-pass looker3d pass / bugfix commit b5d7a16d2cd31794d60783b8460c8a9c4490272e Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 19:48:47 2023 -0500 fix media_fields mutating bug in media url creation commit eb04941b56581f9ecd9b005fdf72ac329c689e4f Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 19:29:03 2023 -0500 fix browserstorage effect bug commit 68cfd17054c12c9e2d2a9996a8fdd52c6f221ad7 Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 19:29:00 2023 -0500 calculate ortho metadata when cache miss, too commit a863c175823fb7c46f61e6c0b0140e915ae1bd11 Merge: b709f1d5b b0faad78b Author: brimoor <[email protected]> Date: Fri Mar 17 18:26:34 2023 -0400 Merge branch 'run-updates' into release/v0.20.0 commit b0faad78b819b7f4f8c6ed9d8e1e3dadfb5ea8f5 Merge: d1cd161bd 03bdbf448 Author: brimoor <[email protected]> Date: Fri Mar 17 18:26:23 2023 -0400 Merge branch 'develop' into run-updates commit 03bdbf448eaff28a8cf295aac33baf9d65e59472 Merge: cabf34f9f 94ef588c2 Author: Brian Moore <[email protected]> Date: Fri Mar 17 18:25:59 2023 -0400 Merge pull request #2797 from voxel51/bugfix/log-route-errors-to-terminal log route error to terminal commit cabf34f9fa5db2158913058bbe543667b3611629 Merge: 3e66210ef fcff50a6d Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 15:17:38 2023 -0500 Merge pull request #2808 from voxel51/sashank/bugfix group / modal / looker bug fixes commit fcff50a6d7b357b8821b3384bb8773c65ebef3ba Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 15:05:24 2023 -0500 correct typo commit b709f1d5b9352938f3646adc7bcdaf2c80e2ade1 Merge: 97d8ab73a d1cd161bd Author: brimoor <[email protected]> Date: Fri Mar 17 12:11:00 2023 -0400 Merge branch 'run-updates' into release/v0.20.0 commit d1cd161bd3e20f4796239c888ed3994c73cf8eff Author: brimoor <[email protected]> Date: Fri Mar 17 12:03:33 2023 -0400 add frame collection name if missing commit 0645f527a761026d4c23786acbd54d0e346e1587 Author: brimoor <[email protected]> Date: Fri Mar 17 12:01:39 2023 -0400 more robust commit b3815b3ae2869123b491c6480712cc63a9911ff6 Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 10:56:39 2023 -0500 allow pointcloud to be default slice commit 788731dfcfa1fc131e8094e8e013b3a4282f679a Author: brimoor <[email protected]> Date: Fri Mar 17 11:49:52 2023 -0400 more robust frames init commit cf6f1abfd98d8db03044d3ed2e94c35566511c80 Author: Sashank Aryal <[email protected]> Date: Fri Mar 17 10:47:32 2023 -0500 use URLs instead of filepath in looker commit 4a0ec6581cb684d64c0c3495c6f25d4ca1594143 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 18:59:32 2023 -0500 fix inexplicable MUI input bug by using native input commit b743b6b3b25f9e8fb621d9283c79587e85d16324 Author: Sashank Aryal <[email protected]> Date: Thu Mar 16 18:21:42 2023 -0500 more than one grid line for small pcds commit 97d8ab73a0942dcd7fd59436dcc8f5dddee878a2 Merge: 05da7f04e 9c03d8f58 Author: brimoor <[email protected]> Date: Fri Mar 17 10:49:45 2023 -0400 Merge branch 'run-updates' into release/v0.20.0 commit 9c03d8f5884b171a2f4b15f5ac2a3afad47ec831 Merge: d20580563 3e66210ef Author: brimoor <[email protected]> Date: Fri Mar 17 10:49:29 2023 -0400 Merge branch 'develop' into run-updates commit 3e66210ef821cdaa8db4c26ad38628a11f92892f Merge: 5439e315d e21f33bc7 Author: Brian Moore <[email protected]> Date: Fri Mar 17 10:49:02 2023 -0400 Merge pull request #2801 from voxel51/mani/saved-views-delete-fix fix delete saved view crash commit 5439e315d1400cfdf1df0d50ece04fbacfbd34c1 Merge: f6ea62de5 51a2752df Author: Brian Moore <[email protected]> Date: Fri Mar 17 10:48:32 2023 -0400 Merge pull request #2806 from voxel51/bug/iss-2803 Adding control over importing/exporting runs and saved views commit 51a2752df03328d04838c03470209e24dd3a6536 Author: brimoor <[email protected]> Date: Fri Mar 17 09:45:33 2023 -0400 adding control over importing/exporting runs and saved views commit 05da7f04e18f5388c8fc44738d2a99c5bf65539f Author: brimoor <[email protected]> Date: Fri Mar 17 09:01:12 2023 -0400 updating versions commit 121a93af9a1fa6ca683779648ddd22d54de9605e Merge: 597ff6abd d20580563 Author: brimoor <[email protected]> Date: Fri Mar 17 08:58:49 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit 0a4845598c7a306179abf96583c0aca29e4c5b72 Author: Jacob Marks <[email protected]> Date: Fri Mar 17 01:21:15 2023 -0700 rough draft visuals - WIP - just for show commit 8b7fe921fae3119e3b09c3faaf7bb0eab88bac2e Author: Jacob <[email protected]> Date: Fri Mar 17 03:51:45 2023 -0400 first draft of text commit d20580563b0acbb680b13aa9e162055d97bb82fe Author: brimoor <[email protected]> Date: Thu Mar 16 22:45:28 2023 -0400 better error messages commit deaa5f71bbce9ffd51bc518f427fa3302bf2052f Author: brimoor <[email protected]> Date: Thu Mar 16 22:07:58 2023 -0400 documenting text similarity views commit 4863d213eb9558801269260781a16946288f8874 Author: brimoor <[email protected]> Date: Thu Mar 16 22:07:46 2023 -0400 linting commit 968687858fbdc82cff10429d8c232d98f2263255 Author: brimoor <[email protected]> Date: Thu Mar 16 21:17:08 2023 -0400 fixing broken links commit 07fb5b5c4133e70f333ce83a0d9f721686cf7418 Author: brimoor <[email protected]> Date: Thu Mar 16 18:11:29 2023 -0400 bugfix commit e21f33bc7ae1ab2681ba8c57e1f008cf129a6600 Author: manivoxel51 <mani@[email protected]> Date: Thu Mar 16 14:36:50 2023 -0700 review comments commit f22d17661b0abc2c41876fe831374d54b9891ef7 Author: manivoxel51 <mani@[email protected]> Date: Thu Mar 16 14:03:58 2023 -0700 fix delete saved view crash commit 53d60af7655992bc51648c42e2c655286fc729ef Author: brimoor <[email protected]> Date: Thu Mar 16 16:03:33 2023 -0400 must update RunResults too commit 2f5c453e2cfa4ba7894d7d447a2403decde11e10 Author: brimoor <[email protected]> Date: Thu Mar 16 12:59:13 2023 -0400 typo commit 597ff6abd988a39a01b58356bbd003ddef5bf49c Merge: 58ccccbd4 e9da16205 Author: brimoor <[email protected]> Date: Thu Mar 16 12:31:33 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit e9da162054fdaf976714b43534082127320130fc Merge: b41e36389 dc6e753ae Author: Brian Moore <[email protected]> Date: Thu Mar 16 12:30:35 2023 -0400 Merge pull request #2792 from voxel51/similarity-docs Updating similarity docs + Qdrant and Pinecone integration docs commit b41e363897ec9a27dd68fb670c3db803007fa592 Merge: ee0bf65c4 5b273ec8b Author: brimoor <[email protected]> Date: Thu Mar 16 12:18:25 2023 -0400 Merge branch 'run-updates' of https://github.com/voxel51/fiftyone into run-updates commit ee0bf65c4b41f5d7c2a8e279032271ce05959efc Author: brimoor <[email protected]> Date: Thu Mar 16 12:17:42 2023 -0400 migrating similarity runs commit 5b273ec8b211b835310300aed3c73167b98412d7 Merge: 62dc544f6 447b6c4bc Author: Benjamin Kane <[email protected]> Date: Thu Mar 16 08:31:58 2023 -0600 Merge branch 'run-updates' of github.com:voxel51/fiftyone into run-updates commit 62dc544f65d9075134fef560944e47bb32a3fd16 Author: Benjamin Kane <[email protected]> Date: Thu Mar 16 08:31:18 2023 -0600 create config commit 447b6c4bc4cdcd230a781e7069761c734923b590 Author: brimoor <[email protected]> Date: Thu Mar 16 10:23:20 2023 -0400 storing weakref to loaded models commit 58ccccbd4d37e1fe78989cf9a698b05d32708ae2 Merge: 76d4efff4 54851d7cc Author: brimoor <[email protected]> Date: Thu Mar 16 00:23:33 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit 54851d7cc3b492c684cf9897c88814a57528b3ba Merge: 208269e5a f6ea62de5 Author: brimoor <[email protected]> Date: Thu Mar 16 00:23:08 2023 -0400 Merge branch 'develop' into run-updates commit dc6e753aedd0e9d6e61da3000e8e8bbb29f8949a Author: brimoor <[email protected]> Date: Thu Mar 16 00:08:52 2023 -0400 editing pass over vector search docs commit f6ea62de5ad9445eab5030a77765e3066eb2b4e7 Author: imanjra <[email protected]> Date: Wed Mar 15 16:48:28 2023 -0400 fetch error parsing enhancements commit 132b07ee65e35a47726e7e9b74c2c5cd9de8c39b Author: Lanny W <[email protected]> Date: Wed Mar 15 17:23:54 2023 -0500 reset selectedLabels after sort submission (#2799) commit 94ef588c2f7b509b51c02a10d3ff896e764512a2 Author: imanjra <[email protected]> Date: Wed Mar 15 17:14:16 2023 -0400 log route error to terminal commit 96777c25108e10e69fd6c32d94f6146b22b35a94 Merge: 6aea165d5 208269e5a Author: brimoor <[email protected]> Date: Wed Mar 15 16:58:43 2023 -0400 Merge branch 'run-updates' into similarity-docs commit 208269e5a9005da711e4eaf23480ff407d4e50e6 Author: brimoor <[email protected]> Date: Wed Mar 15 16:58:01 2023 -0400 allow results-less runs commit 6aea165d59e4e7f7b4642e9a345c1c973b184d49 Author: brimoor <[email protected]> Date: Wed Mar 15 16:47:09 2023 -0400 documenting text similarity commit ff11ea24296a7a50dd7119d36ec0d87b7eea49fa Author: brimoor <[email protected]> Date: Wed Mar 15 16:31:18 2023 -0400 automatically choose an index that supports prompts if necessary commit 9e07d9a814dfa05b2ab40c30e2aef235d5a39475 Merge: 370e2dd03 0b64b0354 Author: manivoxel51 <[email protected]> Date: Wed Mar 15 12:38:47 2023 -0700 Merge pull request #2794 from voxel51/mani/selection-scrollbar-overflow Selection scrollbar is now overflow auto instead of scroll commit d156e7773b1d69cd08633a42fbb4b6c86c60de69 Author: brimoor <[email protected]> Date: Wed Mar 15 15:37:51 2023 -0400 updating modal similarity search GIF commit 918c7a561043a842a5fb1bd22033bed9abf048cd Merge: a0148a888 d3ccf7d00 Author: brimoor <[email protected]> Date: Wed Mar 15 15:20:37 2023 -0400 Merge branch 'run-updates' into similarity-docs commit d3ccf7d003dfa4cf03047b1db4223f5119e31720 Merge: a7a49ae93 5ecebbc71 Author: Brian Moore <[email protected]> Date: Wed Mar 15 15:20:15 2023 -0400 Merge pull request #2793 from voxel51/maxK fix toPatches modal view regression for similarity search commit 0b64b0354511cb787c77b9d23dade4a58d0688a3 Author: manivoxel51 <mani@[email protected]> Date: Wed Mar 15 12:07:04 2023 -0700 Selection scrollbar is now overflow auto instead of scroll commit 5ecebbc71a15abe03b87093a877228bdb50cc456 Author: Lanny W <[email protected]> Date: Wed Mar 15 12:55:03 2023 -0500 toPatches mode, select label in modal view can do similarity patch match commit 76d4efff45d2abaacd70b842b4d4b227870c5da3 Merge: 6abc291ff a7a49ae93 Author: brimoor <[email protected]> Date: Wed Mar 15 13:39:23 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit a0148a888ec85d2fd149d7ee8e15e6580e63ff54 Author: Jacob Marks <[email protected]> Date: Wed Mar 15 10:36:13 2023 -0700 fixing merge conflict in index.rst commit 92e1f49328dbc4f8b9413c7f5a0c3a815fbabc57 Merge: 4b55fd8b4 39e204fac Author: Jacob Marks <[email protected]> Date: Wed Mar 15 10:34:31 2023 -0700 Merge branch 'qdrant-integration' into similarity-docs commit 39e204fac8f15bc03b6ec06f75dbadf8c662df3a Merge: cf2a50b57 889d7d132 Author: Jacob Marks <[email protected]> Date: Wed Mar 15 10:34:13 2023 -0700 merging in pinecone commit a7a49ae936a7e7bb5ad75456b7beeba872d08611 Merge: 42e166e51 c3f9c4be6 Author: Brian Moore <[email protected]> Date: Wed Mar 15 12:51:36 2023 -0400 Merge pull request #2781 from voxel51/maxK Use maxK and supportsLeastSimilarity in the UI to restrict search settings commit 4b55fd8b44c9f1c7223270b5ea43d8b88cfa0941 Author: brimoor <[email protected]> Date: Wed Mar 15 11:51:51 2023 -0400 updating compute_similarity() docs commit e94bbbf2b20f68756a1e3b573a83c96073087fe0 Author: brimoor <[email protected]> Date: Tue Mar 14 23:15:20 2023 -0400 adding brain config to CLI commit cf2a50b574f12afcc3d721ddb18b353169814a07 Author: Jacob Marks <[email protected]> Date: Tue Mar 14 17:46:44 2023 -0700 minor updates commit 889d7d13238c2cc65820d4712a74e81dbefc9e09 Author: Jacob Marks <[email protected]> Date: Tue Mar 14 17:26:06 2023 -0700 Pinecone integration docs first pass commit c3f9c4be6388b193f7a19f3aeb4d78a001be3db3 Author: Lanny W <[email protected]> Date: Tue Mar 14 18:41:13 2023 -0500 fix condition bug commit e772d917f240151a29e7fc8039650eb9d35cc861 Author: Lanny W <[email protected]> Date: Tue Mar 14 18:36:26 2023 -0500 cannot submit empty K sort request; add empty k to warning commit 85b1914a599dcad599a39c658dde542bde67956b Author: Lanny W <[email protected]> Date: Tue Mar 14 18:01:52 2023 -0500 fix issues with toPatches commit 2c8a2324c122efba5d40637e8dc0ed8b296097ed Merge: 5af912534 42e166e51 Author: brimoor <[email protected]> Date: Tue Mar 14 18:39:20 2023 -0400 Merge branch 'run-updates' into similarity-docs commit 48790f1b69d6038000ed68b55ce1ca89df7e3268 Merge: 13969a76d 42e166e51 Author: Lanny W <[email protected]> Date: Tue Mar 14 17:25:31 2023 -0500 Merge branch 'run-updates' into maxK commit 42e166e510a91fcdbef6bcee98629ce7fcb4df84 Author: Lanny W <[email protected]> Date: Tue Mar 14 17:24:11 2023 -0500 similarity sort: last used brainkey should become default (#2780) * save last used brain key for similarity search and use it as default method * convert atom to localstorage * fix a sort related bug * disable submit when query is blank * remove slice, show all available keys * address comments --------- Co-authored-by: brimoor <[email protected]> Co-authored-by: Benjamin Kane <[email protected]> commit 13969a76da8727ab484af25d1e5a70ce68110797 Author: Lanny W <[email protected]> Date: Tue Mar 14 16:56:09 2023 -0500 fix bug commit c5e49d9438a5ee5e0c955d4e8da786a3ed2de143 Author: Lanny W <[email protected]> Date: Tue Mar 14 16:52:31 2023 -0500 fix bug commit 6abc291ff3ff2d04f2f06ed10dd302e80c25b0ed Merge: 0832eeef6 4d1a6ba36 Author: brimoor <[email protected]> Date: Tue Mar 14 17:41:42 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit 5af912534801cc819338741273474bcf93e5cf65 Merge: 30868e1fe 4d1a6ba36 Author: brimoor <[email protected]> Date: Tue Mar 14 17:40:32 2023 -0400 Merge branch 'run-updates' into similarity-docs commit 2467b1d4f57f1a1f11422553af8e9aa435653476 Author: brimoor <[email protected]> Date: Tue Mar 14 17:12:56 2023 -0400 reverting whitespace changes commit 7f1e7ac6f86936c58205e0561867a8fd316c9ef5 Merge: fe3e04cd0 4d1a6ba36 Author: brimoor <[email protected]> Date: Tue Mar 14 17:10:42 2023 -0400 Merge branch 'run-updates' into maxK commit 4d1a6ba36f09da337b91effa7f3174471f7a548a Merge: 5501336b9 370e2dd03 Author: brimoor <[email protected]> Date: Tue Mar 14 17:02:20 2023 -0400 Merge branch 'develop' into run-updates commit 370e2dd03497f8dd10e84783353443a6b1055b57 Author: brimoor <[email protected]> Date: Tue Mar 14 16:46:38 2023 -0400 okay also check for None commit 75f2ece311952fa841502f32b6c0e87007996f50 Author: brimoor <[email protected]> Date: Tue Mar 14 16:44:41 2023 -0400 linting commit 3c599dc245f9d88e6a0232e8c5e8840f0f91c0fb Author: Ritchie Martori <[email protected]> Date: Tue Mar 14 12:21:59 2023 -0700 handle brain result loading err commit fe3e04cd0eddd18dae1df7f1d0b8c480f819aa0c Author: Benjamin Kane <[email protected]> Date: Tue Mar 14 14:26:59 2023 -0600 callbacks commit 5c798b02c05c08dddd9b80ffa57c3ab7fb47a59e Merge: ad1ec1856 eb21af457 Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 14:58:46 2023 -0500 Merge pull request #2787 from voxel51/refactor/opm-img use deep get to get opm image path commit ad1ec1856c809236ea75d280e796c589bd7293a0 Merge: 493245565 ac1554de1 Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 14:33:25 2023 -0500 Merge pull request #2789 from voxel51/refactor/default-port respect FIFTYONE_DEFAULT_APP_PORT env var commit 4932455659c3195f58d230fdbfc42a507a4986dd Author: Kacey <[email protected]> Date: Tue Mar 14 12:06:34 2023 -0700 Fix group aggregations (#2785) * add _id to ortho projections and fix mixed param * rvt notebook * ensure group mode --------- Co-authored-by: Benjamin Kane <[email protected]> commit ac1554de108dfce0804e98370fc292213fc3d9ba Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 13:55:33 2023 -0500 use FIFTYONE_SERVER_PORT for electron commit 10cf8844dee0a9cea716c745916d80ed901074ec Author: Ritchie Martori <[email protected]> Date: Tue Mar 14 10:23:34 2023 -0700 temp remove empty samples commit af50f71276e02288b53b8250f09d01cecc849dd6 Author: Ritchie Martori <[email protected]> Date: Tue Mar 14 09:36:19 2023 -0700 refactor empty state commit 12dd6bf055badcc4717cf964699e3964028a193b Author: Ritchie Martori <[email protected]> Date: Mon Mar 13 17:29:39 2023 -0700 fix empty state loading commit 6820ee4b7bb3ec032008fff4a24bb4a75012687d Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 13:32:21 2023 -0500 respect FIFTYONE_DEFAULT_APP_PORT env var commit eb21af457e80c0949a99b096a54e0950f1be0b1c Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 13:28:17 2023 -0500 use deep get to get opm image path commit 8ddcabddc0aa3c61a83d1dffc595b74fefb46794 Author: Jacob Marks <[email protected]> Date: Tue Mar 14 10:30:44 2023 -0700 Add Qdrant integration to index commit 0a44b3590fb0d6b2cca5d0a02e89a0964a8be7f9 Merge: 7997f8314 5501336b9 Author: Lanny W <[email protected]> Date: Tue Mar 14 12:13:34 2023 -0500 Merge branch 'run-updates' into maxK commit 7997f831486475600bb3391f1b9bc5e20e088cfc Author: Lanny W <[email protected]> Date: Tue Mar 14 12:12:21 2023 -0500 replace useEffect commit feb8a03e3ae45a0c5f5b19a71e3eb83ae2b22ffb Author: Jacob Marks <[email protected]> Date: Tue Mar 14 10:12:12 2023 -0700 finishing first draft of Qdrant integration page commit 0832eeef6bb99c94f64ea7e02376d789d902bd7b Merge: 6ff0ecc22 5501336b9 Author: brimoor <[email protected]> Date: Tue Mar 14 12:45:10 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit 5501336b95d49760d41e44c15013107ea27a29e9 Merge: 65cff27d6 0327dd731 Author: brimoor <[email protected]> Date: Tue Mar 14 12:44:48 2023 -0400 Merge branch 'develop' into run-updates commit 0327dd731b9ddd35119cfee51f00bd95c6d9f9db Merge: 4234d947b f79e66bbe Author: Brian Moore <[email protected]> Date: Tue Mar 14 12:44:18 2023 -0400 Merge pull request #2784 from voxel51/feat/cloud-friendly-orthographic Use dedicated media field for orthographic projection filepath commit 30868e1fe9151b95baeda480a5f4fc1513faa18b Author: brimoor <[email protected]> Date: Tue Mar 14 12:42:45 2023 -0400 initial docs pass commit f79e66bbe9649c997d0b66da5630fd9b7f79f95f Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 11:17:40 2023 -0500 compute metadata from opm filepath commit 95dd9bc449e066665b61839ee934139a35fa0c19 Author: brimoor <[email protected]> Date: Tue Mar 14 09:07:07 2023 -0400 matching teams commit 33c4f48eed78d8b1bc54c2c38b6da5b69f6a16fd Author: Sashank Aryal <[email protected]> Date: Mon Mar 13 23:29:25 2023 -0500 set media type commit 766cc808efebbeb3aae68cfe7401040e8be93466 Author: Sashank Aryal <[email protected]> Date: Mon Mar 13 23:18:24 2023 -0500 use media type computed in backend commit 4234d947bc2c46c490b600a14afc2d9c4693fe68 Merge: d5f54ba2c 90bf95e14 Author: Sashank Aryal <[email protected]> Date: Tue Mar 14 11:08:04 2023 -0500 Merge pull request #2786 from voxel51/shortcut-fix Fix input interference in modal commit 90bf95e14f521c1d542a5d8efb92b94af5d3b5d6 Author: Benjamin Kane <[email protected]> Date: Tue Mar 14 09:49:55 2023 -0600 text only commit d90c0c0a8aef356d4d5f24dd90997369c9da8095 Author: Benjamin Kane <[email protected]> Date: Tue Mar 14 09:09:17 2023 -0600 return on input commit 6ff0ecc22596c25e18fb14972857eeb1425b075f Merge: 57075bc0d 65cff27d6 Author: brimoor <[email protected]> Date: Tue Mar 14 11:04:29 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit 65cff27d639202e64c77584d717d62122212ee70 Merge: d9653372c d5f54ba2c Author: brimoor <[email protected]> Date: Tue Mar 14 11:04:08 2023 -0400 Merge branch 'develop' into run-updates commit d5f54ba2c3463d10fbd970f2d65c9d8dc150d076 Merge: d54b53d87 0f2219a83 Author: Brian Moore <[email protected]> Date: Tue Mar 14 11:00:07 2023 -0400 Merge pull request #2716 from timmermansjoy/develop Adding ability to pass CVAT organization for annotations commit d54b53d87332b6bb552f695c703147781d875638 Merge: 130cf6022 b078445cc Author: Brian Moore <[email protected]> Date: Tue Mar 14 10:58:37 2023 -0400 Merge pull request #2755 from voxel51/tutorial/yolov8 YOLOv8 Tutorial commit d9653372cda31aa5d2d15dd05f4dedd433710b68 Merge: 48b5dae81 130cf6022 Author: Benjamin Kane <[email protected]> Date: Tue Mar 14 08:33:54 2023 -0600 Merge branch 'develop' into run-updates commit 0f2219a83c13629a4f596d7530fd4cc413e8aeab Merge: ead55dcf2 22308d8bf Author: timmermansjoy <[email protected]> Date: Tue Mar 14 15:19:21 2023 +0100 Merge pull request #1 from voxel51/feature/cvat-orgs Add documentation for CVAT organizations commit 22308d8bf2f79ff5f5442968f5a6e4ecc28f68ff Author: Eric Hofesmann <[email protected]> Date: Tue Mar 14 10:15:43 2023 -0400 revert gitignore commit e74ad0b426b22fb8534a54c4e077d12bcd0c9432 Author: Eric Hofesmann <[email protected]> Date: Tue Mar 14 10:10:01 2023 -0400 add CVAT organization docs commit b9c3c528f22807cf5e92ebd48f6506fd2bc6d3aa Author: Lanny W <[email protected]> Date: Mon Mar 13 22:00:02 2023 -0500 when brainkey changes, reset reverse to false commit 055ee06d1476979a8fc4c3a9b4cddc2c2ca374f7 Author: Jacob Marks <[email protected]> Date: Mon Mar 13 17:39:44 2023 -0700 Still filling out the template commit 130cf6022260809a02c269561cd2f154709b7d54 Author: Benjamin Kane <[email protected]> Date: Mon Mar 13 17:51:14 2023 -0600 raise on unexpected keypoint filter (#2779) commit 2bf99c16211ee588b950c14a96a675b24159ea13 Author: Lanny W <[email protected]> Date: Mon Mar 13 18:37:52 2023 -0500 update validateK commit 8b928194bc800136de5949400ebca7d4f34829e0 Author: Lanny W <[email protected]> Date: Mon Mar 13 18:31:24 2023 -0500 show warning dynamically based on key and disable submit when k > maxK commit 3524997fada4211feff919bcd9b503d8110e2a99 Author: Lanny W <[email protected]> Date: Mon Mar 13 18:24:36 2023 -0500 fix bugs commit a1cfbfb46cb2692bb910762836b2bdc1a4bb2681 Merge: c843470e6 48b5dae81 Author: brimoor <[email protected]> Date: Mon Mar 13 19:11:15 2023 -0400 Merge branch 'run-updates' into maxK commit 6de4e0d42f525eef533b9c03f5f37034e191b329 Author: Ritchie Martori <[email protected]> Date: Mon Mar 13 14:33:34 2023 -0700 fix group selection commit b078445ccc8f82d600d662fad1d7ff60003ee9a5 Author: Jacob Marks <[email protected]> Date: Mon Mar 13 14:05:15 2023 -0700 updating thumbnail image commit c843470e6831f691b6dca6a6c9205d2a7a19839d Author: Lanny W <[email protected]> Date: Mon Mar 13 15:18:34 2023 -0500 add warning when validating K with maxK and disable least similarity search when not supported commit 57075bc0d3372d233f635bd3729c79ddbd9e86c9 Author: brimoor <[email protected]> Date: Mon Mar 13 15:40:03 2023 -0400 media field updates commit 1b406b2aa854ebdee23e94efb23f51976f0114b1 Author: Lanny W <[email protected]> Date: Mon Mar 13 14:37:48 2023 -0500 use instance instead of class commit ea8cba4e185a5ad7e54c2dc5c7455661874bc2b2 Author: Lanny W <[email protected]> Date: Mon Mar 13 14:36:22 2023 -0500 add maxK and supportsLeastSimilarity commit d6c14a59f1421fe251dc0d08fc5f4d10531c9a21 Author: Jacob Marks <[email protected]> Date: Mon Mar 13 09:45:58 2023 -0700 Created file. WIP! commit ead55dcf205b857f5654ca1186ca647ebc82348a Author: timmermansjoy <[email protected]> Date: Mon Mar 13 16:34:21 2023 +0100 removed merge confilct mistage commit 5b86a607d07866f8c4ba42e106cae2dd50e1a298 Merge: 12b66d456 c47ce83e8 Author: timmermansjoy <[email protected]> Date: Mon Mar 13 16:26:42 2023 +0100 Merge branch 'develop' of https://github.com/timmermansjoy/fiftyone into develop commit 12b66d456de2210814366bf32c9b4268133f14cf Author: timmermansjoy <[email protected]> Date: Mon Mar 13 16:24:25 2023 +0100 hiding venv commit 316dbfd594cc3a509b0156332387e345093b540e Author: timmermansjoy <[email protected]> Date: Mon Mar 13 16:22:47 2023 +0100 fixed organization param for cvat commit 7d0ebaaba035ae7fcb52a9e99a4d2411c107fe3e Author: Akshit Priyesh <[email protected]> Date: Mon Mar 13 20:32:11 2023 +0530 fixes app crashing while filtering keypoints labels (view.py) (#2774) * fixes app crashing while filtering keypoints labels (view.py) * fix app crashing while filtering categorical variables * fix app crashing while filtering categorical variables (view.py) * fix app crashing while filtering - added changes suggested by Ianzhenw commit 1368c921e3d0db893cb049241af631cee5041f35 Merge: 546e08eed 48b5dae81 Author: brimoor <[email protected]> Date: Mon Mar 13 10:31:33 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit 48b5dae81cc0adb6f7d4d1a994c4489b6eee6470 Merge: abdfa07c0 ffac47f4e Author: brimoor <[email protected]> Date: Mon Mar 13 10:31:19 2023 -0400 Merge branch 'develop' into run-updates commit ffac47f4e8d8dac9540e90ca4c6601b3b9398ab6 Merge: e9e178aa0 ddf19eac5 Author: Brian Moore <[email protected]> Date: Mon Mar 13 10:30:16 2023 -0400 Merge pull request #2770 from voxel51/bugfix/set-values Adding validation to set_values() commit 546e08eed740610285acc7f28f5d88a5f8c9370a Author: brimoor <[email protected]> Date: Mon Mar 13 09:13:35 2023 -0400 consistent version commit f2e46dc179533e06c79ee3c90c87caf88435ed55 Author: brimoor <[email protected]> Date: Mon Mar 13 08:58:55 2023 -0400 pip-friendly versioning commit 15bc52196fbb8dae288b327f67c0e80f90c12bf7 Merge: 861ecdf85 abdfa07c0 Author: brimoor <[email protected]> Date: Mon Mar 13 08:53:38 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit abdfa07c0f2bc60cb8665f4880dbbe3136677bc9 Merge: 6cf607a33 e9e178aa0 Author: brimoor <[email protected]> Date: Mon Mar 13 08:53:17 2023 -0400 Merge branch 'develop' into run-updates commit 861ecdf850b834ffc075eb6afbf03b6f46a2e04f Merge: c23e2db15 6cf607a33 Author: brimoor <[email protected]> Date: Mon Mar 13 08:52:33 2023 -0400 Merge branch 'run-updates' into release/v0.20.0-rc1 commit c23e2db15c3ee929d6b15b7b51ca4cbdb3ac8570 Author: brimoor <[email protected]> Date: Mon Mar 13 08:47:32 2023 -0400 bumping version numbers commit e9e178aa03e5aeede8404ff5e13cf54885381646 Merge: b45bc6cd3 dfdd3d6a8 Author: Brian Moore <[email protected]> Date: Mon Mar 13 08:30:28 2023 -0400 Merge pull request #2769 from voxel51/bug/inconsistent-sidebar Fix sidebar metadata inconsistency in group modal commit 6cf607a3350af7ae34772fb3a3d7d4d194b98f57 Author: brimoor <[email protected]> Date: Mon Mar 13 00:33:25 2023 -0400 lazy import commit b45bc6cd3089d8fd7726906da19629aed1c6924e Merge: d51b8b5c7 2edc88ffe Author: Brian Moore <[email protected]> Date: Mon Mar 13 00:23:36 2023 -0400 Merge pull request #2771 from NeoKish/fix-broken-link-pr Fixed broken torchvision dataset link commit 6f50b58ac8b79bd5a10580dc008329d671523bee Merge: 075e30989 9674e35ef Author: Brian Moore <[email protected]> Date: Mon Mar 13 00:18:11 2023 -0400 Merge pull request #2763 from voxel51/bugfix/similarity-tests [HOLD] Removing fiftyone-brain patch commit 075e30989566bd86fc907d539085f2ffbaf75c7b Author: brimoor <[email protected]> Date: Mon Mar 13 00:05:38 2023 -0400 passing run key to RunResults constructor commit d30f309a454c59d4daa3dc5c03251a7c648027a4 Author: brimoor <[email protected]> Date: Sun Mar 12 17:07:10 2023 -0400 adding save_config() method commit 9674e35ef53a6231f25304601a9ad082277d8f8e Merge: 0b5c4de93 ed0f896c2 Author: brimoor <[email protected]> Date: Sun Mar 12 14:10:42 2023 -0400 Merge branch 'run-updates' into bugfix/similarity-tests commit ed0f896c24ee9e33e98a6cb84a44d49ba0538e21 Author: brimoor <[email protected]> Date: Sun Mar 12 14:09:27 2023 -0400 bug commit 0b5c4de9335ffcb153de1e4ef7e3b896ddc75790 Author: brimoor <[email protected]> Date: Sun Mar 12 14:06:23 2023 -0400 removing todo commit f2c9c613c1e430aa4b2dec22663f1473a6dc898c Merge: 0fae90622 fa63e9116 Author: brimoor <[email protected]> Date: Sun Mar 12 14:04:30 2023 -0400 Merge branch 'run-updates' into bugfix/similarity-tests commit fa63e9116db3ac3e366761bf14041cbc86349c3e Author: brimoor <[email protected]> Date: Sun Mar 12 13:40:41 2023 -0400 moving credential loading to the RunConfig commit 0b765218d90c4d9507c595d2b4c22f0dc992304f Author: brimoor <[email protected]> Date: Sun Mar 12 13:13:18 2023 -0400 adding missing kwargs commit e39d2400c28709a16ea2349d6ace2ff4fdeba245 Author: brimoor <[email protected]> Date: Sun Mar 12 13:06:32 2023 -0400 removing unnecessary method commit 4f9fd9cf866f5a0202d426260acb9d487f08bb9c Author: brimoor <[email protected]> Date: Sun Mar 12 12:55:31 2023 -0400 adding support for matching on config params commit 2edc88ffe59f680e253192676eaefa4d67bdb1d6 Author: Kishan Savant <[email protected]> Date: Sun Mar 12 11:00:45 2023 +0530 Fixed broken torchvision dataset link commit ddf19eac53d31e380ed4f884babe53be11c35664 Author: brimoor <[email protected]> Date: Sat Mar 11 17:26:48 2023 -0500 one last bug commit 3fe52be710dc3c176db4062e0c80344806741a33 Author: brimoor <[email protected]> Date: Sat Mar 11 16:43:45 2023 -0500 handling new fields commit 078b5cd1dc2b9b3da56cc994a7ec278e716a7734 Author: brimoor <[email protected]> Date: Sat Mar 11 16:15:39 2023 -0500 adding unit tests commit a77be55d08001157bb8b0488aeb40be3095ee0cf Author: brimoor <[email protected]> Date: Fri Mar 10 22:09:39 2023 -0500 adding support for validating values passed to set_values() commit dfdd3d6a8000a073fbbf38f5f4a69d921e3c2a3a Author: Benjamin Kane <[email protected]> Date: Fri Mar 10 19:18:10 2023 -0600 fix for undefined lists commit 3b613213a3b28a6f1febb5d806f0d7236c48c252 Author: Sashank Aryal <[email protected]> Date: Fri Mar 10 18:32:13 2023 -0600 use 2 as default point size commit f4ce7e7fc1b5e69b116cb30cebeb13caab09ee4d Author: Sashank Aryal <[email protected]> Date: Fri Mar 10 18:23:35 2023 -0600 don't prevent default for 'c' since that interferes with text input commit 7a8dea69cd387b5816c4f15fcdc9bc91b97c2170 Author: Sashank Aryal <[email protected]> Date: Fri Mar 10 18:18:24 2023 -0600 forward callback-ref in defaultGroupSample as well commit c0201af43c417c459feca11ace18233c7b3fe3c8 Author: Sashank Aryal <[email protected]> Date: Fri Mar 10 18:17:57 2023 -0600 different logic in activeModalSample for non-group samples commit 6c19ace956ee1fb53b6bb03e6569a1a46f22b35f Author: Sashank Aryal <[email protected]> Date: Fri Mar 10 18:02:31 2023 -0600 fix group modal sidebar sync error in group metadata when navigating between samples commit 56f142701c5d08533f7add3154bf36168df69ebb Author: Sashank Aryal <[email protected]> Date: Fri M…
What changes are proposed in this pull request?
Closes #2836 where
SampleCollection.stats()
was being reported as the full document size total even if a SelectField stage was present.This bug was due to a change in behavior of $bsonSize within a $group stage after MongoDB ~ 5.2. It's believed because of the usage of the Slot Based Execution query engine for $group stage in 5.2.
A MongoDB bug ticket has been filed but that's about all we can do since there appears to be no way to turn off the SDE engine selectively.
The workaround is to grab document sizes first then sum them, in 2 stages instead of 1. This may be slightly more inefficient but likely not by much.
How is this patch tested? If it is not, please explain why.
Added unit test exposing bug in MongoDB >= 5.2. Passes now.
Release Notes
Is this a user-facing change that should be mentioned in the release notes?
notes for FiftyOne users.
What areas of FiftyOne does this PR affect?
fiftyone
Python library changes