Skip to content
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

Add support for new filtering ops #581

Merged
merged 47 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
ddd2518
wip
czaloom Jun 7, 2024
e42373b
removed meta
czaloom Jun 7, 2024
c3027d8
merged pr 609
czaloom Jun 7, 2024
4b19ea1
wip
czaloom Jun 7, 2024
f82e357
fixed ts client
czaloom Jun 7, 2024
7949b44
Merge branch 'czaloom-607-remove-meta-attribute' into czaloom-eval-da…
czaloom Jun 7, 2024
6018f3d
added migration
czaloom Jun 7, 2024
9596a22
backend tests passing
czaloom Jun 7, 2024
cb71513
passing tests
czaloom Jun 10, 2024
ca266bd
adjusted migration
czaloom Jun 10, 2024
e328662
merged main
czaloom Jun 10, 2024
5eb1c74
fixed migration
czaloom Jun 10, 2024
54e3983
fixed migration + models
czaloom Jun 10, 2024
9c8c4dd
transitioned schema
czaloom Jun 10, 2024
e0e1fd5
endpoint transition
czaloom Jun 10, 2024
53b3780
merge main
czaloom Jun 11, 2024
f38df7e
converting schema
czaloom Jun 11, 2024
481c6ac
wip - got functional label test passing
czaloom Jun 12, 2024
caa8bba
Merge branch 'main' into czaloom-update-query-filtering
czaloom Jun 12, 2024
0847268
passing functional tests
czaloom Jun 12, 2024
4c0618e
working on fastapi unit tests
czaloom Jun 12, 2024
cef58b0
func tests passing
czaloom Jun 13, 2024
f314a82
added backend unit tests
czaloom Jun 13, 2024
72d1fc8
fixed var name
czaloom Jun 13, 2024
87277ab
passing python integration tests!
czaloom Jun 13, 2024
1922471
passing all python tests
czaloom Jun 13, 2024
009f532
fixed ts client
czaloom Jun 13, 2024
9a950c0
fix old python?
czaloom Jun 13, 2024
bf8c520
checked out migration
czaloom Jun 13, 2024
e685aa2
adding integration test examples
czaloom Jun 13, 2024
afb5ab1
reworked query generation to get better results
czaloom Jun 14, 2024
7af35f9
small fix
czaloom Jun 14, 2024
ca1b9bd
commented test
czaloom Jun 14, 2024
ac1c377
Merge branch 'main' into czaloom-update-query-filtering
czaloom Jun 14, 2024
6c9eadd
merge main
czaloom Jun 14, 2024
b708b3e
fixed dataset.get_datums + notebooks running
czaloom Jun 14, 2024
4b3249f
fixed dataset.get_datums + new filtering notebook
czaloom Jun 14, 2024
c726792
moved a line in the new filtering notebook
czaloom Jun 14, 2024
94e9279
added path for deprecated filters
czaloom Jun 14, 2024
28a9a37
added a xor example to filtering notebook
czaloom Jun 14, 2024
905b3fe
added to filtering notebook
czaloom Jun 14, 2024
1c63f9f
changes
czaloom Jun 14, 2024
f83ac6c
Merge branch 'main' into czaloom-update-query-filtering
czaloom Jun 14, 2024
8aa57e3
Merge branch 'main' into czaloom-update-query-filtering
czaloom Jun 14, 2024
51de040
fixed test
czaloom Jun 17, 2024
c705556
Merge branch 'main' into czaloom-update-query-filtering
czaloom Jun 17, 2024
e43cef4
replaced soft_and, soft_or with LogicalFunction classmethods
czaloom Jun 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/tests/functional-tests/backend/core/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def test_dataset_status_with_evaluations(
created_dataset: str,
created_model: str,
):

# create an evaluation
core.set_dataset_status(db, created_dataset, enums.TableStatus.FINALIZED)
evaluations = core.create_or_get_evaluations(
Expand Down
Loading
Loading