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
Create a strawman representation of UMAP points and clusters in strewberry dataclasses
The text was updated successfully, but these errors were encountered:
Example query
query EmbeddingUMAPDriftCardQuery( $id: ID! $startTime: DateTime! $endTime: DateTime! $name: String! $category: DimensionCategory! $dataset: ModelDatasetInput! $referenceDataset: ModelDatasetInput $modelBaselineId: ID $nComponents: Int! $nNeighbors: Int! $minDist: Float! $datasetSampleSize: Int! ) { node(id: $id) { __typename ... on Model { dimension(startTime: $startTime, endTime: $endTime, name: $name, category: $category) { UMAPPoints(dataset: $dataset, referenceDataset: $referenceDataset, modelBaselineId: $modelBaselineId, nComponents: $nComponents, nNeighbors: $nNeighbors, minDist: $minDist, datasetSampleSize: $datasetSampleSize, referenceDatasetSampleSize: $datasetSampleSize) { data { coordinates { __typename ... on TwoDimensionalCoordinate { x y } ... on ThreeDimensionalCoordinate { x y z } } rawTextData linkToData predictionLabel actualLabel predictionScore actualScore predictionId uuid } referenceData { coordinates { __typename ... on TwoDimensionalCoordinate { x y } ... on ThreeDimensionalCoordinate { x y z } } rawTextData linkToData predictionLabel actualLabel predictionScore actualScore predictionId uuid } clusters { clusterId pointIds purityScore } } } } id } }
Sorry, something went wrong.
mikeldking
RogerHYang
Successfully merging a pull request may close this issue.
Create a strawman representation of UMAP points and clusters in strewberry dataclasses
The text was updated successfully, but these errors were encountered: