Skip to content

Commit 68602cd

Browse files
authored
Tasks: Add keypoint detection task page to index.ts (#917)
I forgot to add it to index.ts 🤦🏻‍♀️ was waiting cluelessly to appear on Hub
1 parent 0c33e20 commit 68602cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/tasks/src/tasks/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import zeroShotImageClassification from "./zero-shot-image-classification/data";
3939
import zeroShotObjectDetection from "./zero-shot-object-detection/data";
4040
import imageTo3D from "./image-to-3d/data";
4141
import textTo3D from "./text-to-3d/data";
42+
import keypointDetection from "./keypoint-detection/data";
4243

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

0 commit comments

Comments
 (0)