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

model evaluation bug fixes #5166

Merged
merged 3 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion app/packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fiftyone/state": "*",
"@mui/icons-material": "^5.10.2",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.9.0",
"@react-spring/web": "^9.7.3",
"@textea/json-viewer": "^3.4.1",
Expand Down
2 changes: 1 addition & 1 deletion app/packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@fiftyone/state": "*",
"@fiftyone/utilities": "*",
"@monaco-editor/react": "^4.5.0",
"@mui/icons-material": "^5.10.2",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.9.0",
"@react-spring/web": "^9.4.3",
"@use-gesture/react": "^10.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1350,7 +1350,7 @@ export default function Evaluation(props: EvaluationProps) {
variant="outlined"
color="secondary"
sx={{ width: "100%" }}
onClick={closeConfusionMatrixConfigDialog}
onClick={closeClassPerformanceConfigDialog}
>
Cancel
</Button>
Expand Down
12 changes: 6 additions & 6 deletions app/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1898,7 +1898,7 @@ __metadata:
"@emotion/styled": ^11.10.4
"@fiftyone/state": "*"
"@mdx-js/react": ^1.6.22
"@mui/icons-material": ^5.10.2
"@mui/icons-material": ^5.16.7
"@mui/material": ^5.9.0
"@react-spring/web": ^9.7.3
"@textea/json-viewer": ^3.4.1
Expand Down Expand Up @@ -1937,7 +1937,7 @@ __metadata:
"@fiftyone/state": "*"
"@fiftyone/utilities": "*"
"@monaco-editor/react": ^4.5.0
"@mui/icons-material": ^5.10.2
"@mui/icons-material": ^5.16.7
"@mui/material": ^5.9.0
"@react-spring/web": ^9.4.3
"@types/lodash": ^4.14.182
Expand Down Expand Up @@ -3140,9 +3140,9 @@ __metadata:
languageName: node
linkType: hard

"@mui/icons-material@npm:^5.10.2":
version: 5.15.14
resolution: "@mui/icons-material@npm:5.15.14"
"@mui/icons-material@npm:^5.16.7":
version: 5.16.7
resolution: "@mui/icons-material@npm:5.16.7"
dependencies:
"@babel/runtime": ^7.23.9
peerDependencies:
Expand All @@ -3152,7 +3152,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 719036244167c7cb5456074d7d66df0c26d4b200c11620ba177a4e75186f6ecc4930a3b4bcb7300d92aa37df19ca8406fa63ad4347214cc167ddca986eb1a198
checksum: a875f2837897d79a83173d80461e06ab090b64d08913d26433cf2cbeb8e7c7456468632a7aa495d722718f09111a8043255777d73b4dfbe9e0f863a170fc7190
languageName: node
linkType: hard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def load_pending_evaluations(self, ctx, skip_update=False):
pending_evaluations_in_store[
dataset_id
] = updated_pending_evaluations_for_dataset_in_stored
store.set("pending_evaluations", pending_evaluations)
store.set("pending_evaluations", pending_evaluations_in_store)
ctx.panel.set_data("pending_evaluations", pending_evaluations)

def on_evaluate_model_success(self, ctx):
Expand Down
Loading