From 459ed38e47e66c67faaf7103e258db9f629d6187 Mon Sep 17 00:00:00 2001 From: merveenoyan Date: Tue, 20 May 2025 18:32:18 +0200 Subject: [PATCH 1/4] video-to-video --- packages/tasks/src/pipelines.ts | 6 ++++++ packages/tasks/src/tasks/index.ts | 3 +++ 2 files changed, 9 insertions(+) diff --git a/packages/tasks/src/pipelines.ts b/packages/tasks/src/pipelines.ts index 0595f2ed86..5b651c3237 100644 --- a/packages/tasks/src/pipelines.ts +++ b/packages/tasks/src/pipelines.ts @@ -693,6 +693,12 @@ export const PIPELINE_DATA = { color: "yellow", hideInDatasets: true, }, + "video-to-video": { + name: "Video-to-Video", + modality: "cv", + color: "blue", + hideInDatasets: true, + }, other: { name: "Other", modality: "other", diff --git a/packages/tasks/src/tasks/index.ts b/packages/tasks/src/tasks/index.ts index 7c4ae3fd09..83f9ded4b9 100644 --- a/packages/tasks/src/tasks/index.ts +++ b/packages/tasks/src/tasks/index.ts @@ -111,6 +111,7 @@ export type { } from "./zero-shot-object-detection/inference.js"; import type { ModelLibraryKey } from "../model-libraries.js"; +import { get } from "http"; /** * Model libraries compatible with each ML task @@ -179,6 +180,7 @@ export const TASKS_MODEL_LIBRARIES: Record = { "image-to-3d": ["diffusers"], "any-to-any": ["transformers"], "visual-document-retrieval": ["transformers"], + "video-to-video": ["diffusers"], }; /** @@ -248,6 +250,7 @@ export const TASKS_DATA: Record = { translation: getData("translation", translation), "unconditional-image-generation": getData("unconditional-image-generation", unconditionalImageGeneration), "video-text-to-text": getData("video-text-to-text", videoTextToText), + "video-to-video": getData("video-to-video", placeholder), "visual-question-answering": getData("visual-question-answering", visualQuestionAnswering), "voice-activity-detection": undefined, "zero-shot-classification": getData("zero-shot-classification", zeroShotClassification), From 56d9a3f781411fd881032e42e32ad7ba00026ec0 Mon Sep 17 00:00:00 2001 From: merveenoyan Date: Wed, 21 May 2025 12:40:42 +0200 Subject: [PATCH 2/4] fix --- packages/tasks/src/tasks/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/tasks/src/tasks/index.ts b/packages/tasks/src/tasks/index.ts index 83f9ded4b9..c459665e0b 100644 --- a/packages/tasks/src/tasks/index.ts +++ b/packages/tasks/src/tasks/index.ts @@ -111,8 +111,6 @@ export type { } from "./zero-shot-object-detection/inference.js"; import type { ModelLibraryKey } from "../model-libraries.js"; -import { get } from "http"; - /** * Model libraries compatible with each ML task */ From 1ba4363ef990db20cf3a766cf8758d1c0e009d68 Mon Sep 17 00:00:00 2001 From: Merve Noyan Date: Mon, 23 Jun 2025 15:14:14 +0200 Subject: [PATCH 3/4] remove color --- packages/tasks/src/pipelines.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/tasks/src/pipelines.ts b/packages/tasks/src/pipelines.ts index 1516eb728d..b2e972098b 100644 --- a/packages/tasks/src/pipelines.ts +++ b/packages/tasks/src/pipelines.ts @@ -635,7 +635,6 @@ export const PIPELINE_DATA = { "video-to-video": { name: "Video-to-Video", modality: "cv", - color: "blue", hideInDatasets: true, }, other: { From cccc389ceee35caeb8d4794e291215afeaddc787 Mon Sep 17 00:00:00 2001 From: Vaibhavs10 Date: Tue, 24 Jun 2025 10:46:03 +0200 Subject: [PATCH 4/4] Empty commit for CI