Skip to main content

A Python library to extract, store and fuse multimodal features for deep learning

Project description

MMKit-Features: Multimodal Features Extraction Toolkit

A light-weight Python library to extract, fuse and store multimodal features for deep learning.

Objectives

  • To extract, store and fuse various features from multimodal datasets rapidly and efficiently;
  • To provide a common multimodal information processing framework for multimodal features;
  • To achieve generative adversarial network (GAN)-based multimodal knowledge representation dynamically.

Framework

Design science canvas

Modalities

  1. Text/Language modality
  2. Image modality
  3. Video modality
  4. Speech/sound modality
  5. Cross-modality between above

Usage

A toy example showing how to build a multimodal feature (MMF) library is here:

from mmkfeatures.fusion.mm_features_lib import MMFeaturesLib
from mmkfeatures.fusion.mm_features_node import MMFeaturesNode
import numpy as np
if __name__ == "__main__":
    # 1. create an empty multimodal features library with root and dataset names
    feature_lib=MMFeaturesLib(root_name="test features",dataset_name="test_features")
    # 2. set short names for each dimension for convenience
    feature_lib.set_features_name(["feature1","feature2","feature3"])
    # 3. set a  list of content IDs
    content_ids=["content1","content2","content3"]
    # 4. according to IDs, assign a group of features with interval to corresponding content ID
    features_dict={}
    for id in content_ids:
        mmf_node=MMFeaturesNode(id)
        mmf_node.set_item("name",str(id))
        mmf_node.set_item("features",np.array([[1,2,3]]))
        mmf_node.set_item("intervals",np.array([[0,1]]))
        features_dict[id]=mmf_node
    # 5. set the library's data
    feature_lib.set_data(features_dict)
    # 6. save the features to disk for future use
    feature_lib.save_data("test6_feature.csd")
    # 7. check structure of lib file with the format of h5py
    feature_lib.show_structure("test6_feature.csd")
    # 8. have a glance of features content within the dataset
    feature_lib.show_sample_data("test6_feature.csd")

Further instructions on the toolkit refers to here.

Credits

The project includes some source codes from various open-source contributors. Here is a list of their contributions.

  1. A2Zadeh/CMU-MultimodalSDK
  2. aishoot/Speech_Feature_Extraction
  3. antoine77340/video_feature_extractor
  4. jgoodman8/py-image-features-extractor
  5. v-iashin/Video Features

License

Please cite our project if the project is used in your research.

Chen, D. (2022). MMKit-Features: Multimodal Features Extraction Toolkit (Version 0.0.1) [Computer software]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mmkit-features-0.0.1a1.tar.gz (94.8 kB view details)

Uploaded Source

Built Distribution

mmkit_features-0.0.1a1-py3-none-any.whl (124.4 kB view details)

Uploaded Python 3

File details

Details for the file mmkit-features-0.0.1a1.tar.gz.

File metadata

  • Download URL: mmkit-features-0.0.1a1.tar.gz
  • Upload date:
  • Size: 94.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mmkit-features-0.0.1a1.tar.gz
Algorithm Hash digest
SHA256 fa37b12ec9fe19215168d3a4fa7a90bd5bdb8bf2e03907f2100a14d4eca2c15f
MD5 094504fedf34a5a850fd390930cde18b
BLAKE2b-256 ab400ccebe8152d31bb72223ff4eb35da71f28b6c1c4c59b4d074be190c892fb

See more details on using hashes here.

File details

Details for the file mmkit_features-0.0.1a1-py3-none-any.whl.

File metadata

  • Download URL: mmkit_features-0.0.1a1-py3-none-any.whl
  • Upload date:
  • Size: 124.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mmkit_features-0.0.1a1-py3-none-any.whl
Algorithm Hash digest
SHA256 9b2bc2100bc51c198abfbeada25ce45978a9f4d1201354ed0fa4305ad3a666ca
MD5 04c11097a83e5304a3cb4e13ecc7d31e
BLAKE2b-256 01cdf33ee248b8246e2c19eda276cb28baefda49f9c326f86af042e382ed0dc6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page