logo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions

Updated 2 years ago

video-text-embedding

Video-Text Retrieval Embdding with CLIP4Clip

author: Chen Zhang


Description

This operator extracts features for video or text with CLIP4Clip which can generate embeddings for text and video by jointly training a video encoder and text encoder to maximize the cosine similarity.


Code Example

Load an video from path './demo_video.mp4' to generate an video embedding.

Read the text 'kids feeding and playing with the horse' to generate an text embedding.

Write the pipeline in simplified style:

import towhee

towhee.dc(['./demo_video.mp4']) \
        .video_decode.ffmpeg(sample_type='uniform_temporal_subsample', args={'num_samples': 12}) \
        .runas_op(func=lambda x: [y[0] for y in x]) \
        .clip4clip(model_name='clip_vit_b32', modality='video', weight_path='./pytorch_model.bin.1') \
        .show()

towhee.dc(['kids feeding and playing with the horse']) \
      .clip4clip(model_name='clip_vit_b32', modality='text', weight_path='./pytorch_model.bin.1') \
      .show()


Write a same pipeline with explicit inputs/outputs name specifications:

import towhee

towhee.dc['path'](['./demo_video.mp4']) \
        .video_decode.ffmpeg['path', 'frames'](sample_type='uniform_temporal_subsample', args={'num_samples': 12}) \
        .runas_op['frames', 'frames'](func=lambda x: [y[0] for y in x]) \
        .clip4clip['frames', 'vec'](model_name='clip_vit_b32', modality='video', weight_path='./pytorch_model.bin.1') \
        .show()

towhee.dc['text'](["kids feeding and playing with the horse"]) \
      .clip4clip['text','vec'](model_name='clip_vit_b32', modality='text', weight_path='./pytorch_model.bin.1') \
      .select['text', 'vec']() \
      .show()



Factory Constructor

Create the operator via the following factory method

clip4clip(model_name, modality, weight_path)

Parameters:

model_name: str

​ The model name of CLIP. Supported model names:

  • clip_vit_b32

modality: str

​ Which modality(video or text) is used to generate the embedding.

weight_path: str

​ pretrained model weights path.


Interface

An video-text embedding operator takes a list of towhee image or string as input and generate an embedding in ndarray.

Parameters:

data: List[towhee.types.Image] or str

​ The data (list of image(which is uniform subsampled from a video) or text based on specified modality) to generate embedding.

Returns: numpy.ndarray

​ The data embedding extracted by model.

ChengZi 879cbb40d1 modifty 4 Commits
file-icon .gitattributes
1.1 KiB
download-icon
Initial commit 2 years ago
file-icon README.md
2.7 KiB
download-icon
modifty 2 years ago
file-icon __init__.py
750 B
download-icon
init 2 years ago
file-icon clip4clip.py
4.2 KiB
download-icon
modifty 2 years ago
file-icon demo_video.mp4
950 KiB
download-icon
modifty 2 years ago
file-icon pytorch_model.bin.1
337 MiB
download-icon
model 2 years ago
file-icon requirements.txt
0 B
download-icon
init 2 years ago
file-icon vect_explicit_text.png
36 KiB
download-icon
modifty 2 years ago
file-icon vect_explicit_video.png
36 KiB
download-icon
modifty 2 years ago
file-icon vect_simplified_text.png
17 KiB
download-icon
modifty 2 years ago
file-icon vect_simplified_video.png
18 KiB
download-icon
modifty 2 years ago