Skip to content

Commit

Permalink
Tasks: Add keypoint detection task page to index.ts (#917)
Browse files Browse the repository at this point in the history
I forgot to add it to index.ts πŸ€¦πŸ»β€β™€οΈ was waiting cluelessly to appear on
Hub
  • Loading branch information
merveenoyan committed Sep 21, 2024
1 parent 0c33e20 commit 68602cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/tasks/src/tasks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import zeroShotImageClassification from "./zero-shot-image-classification/data";
import zeroShotObjectDetection from "./zero-shot-object-detection/data";
import imageTo3D from "./image-to-3d/data";
import textTo3D from "./text-to-3d/data";
import keypointDetection from "./keypoint-detection/data";

export type * from "./audio-classification/inference";
export type * from "./automatic-speech-recognition/inference";
Expand Down Expand Up @@ -208,7 +209,7 @@ export const TASKS_DATA: Record<PipelineType, TaskData | undefined> = {
"image-text-to-text": getData("image-text-to-text", imageTextToText),
"image-to-text": getData("image-to-text", imageToText),
"image-to-video": undefined,
"keypoint-detection": getData("keypoint-detection", placeholder),
"keypoint-detection": getData("keypoint-detection", keypointDetection),
"mask-generation": getData("mask-generation", maskGeneration),
"multiple-choice": undefined,
"object-detection": getData("object-detection", objectDetection),
Expand Down

0 comments on commit 68602cd

Please sign in to comment.