Metafeature Extraction for Unstructured Data
Project description
Elemeta: Metafeature Extraction for Unstructured Data
Elemeta is an open-source library in Python for metafeature extraction. With it, you will be able to explore, monitor, and extract features from unstructured data through enriched tabular representations. It provides a straightforward Python API for metafeature extraction from unstructured data like text and images.
Key usage of Elemeta includes:
- Exploratory Data Analysis (EDA) - extract useful metafeature on unstructured data to analyze, investigate, and summarize the main characteristics and employ data visualization methods.
- Data and model monitoring - utilize structured ML monitoring techniques in addition to the typical latent embedding visualizations.
- Feature extraction - engineer alternative features to be utilized in simpler models such as decision trees.
Getting Started
Get started with Elemeta by installing the Python library via pip
pip install elemeta
Once installed, there are a few example dataframes that can be used for testing the library.
You can find them in elemeta.dataset.dateset
from elemeta.dataset.dataset import get_imdb_reviews
# Load existing dataframe
reviews = get_imdb_reviews()
After you have a dataset with the text column, you can start using the library with the following Python API:
from elemeta.nlp.metafeature_extractors_runner import MetafeatureExtractorsRunner
metafeature_extractors_runner = MetafeatureExtractorsRunner()
reviews = metafeature_extractors_runner.run_on_dataframe(dataframe=reviews, text_column='review')
reviews.show()
Pandas DataFrames
Elemeta can enrich standard dataframe objects:
from elemeta.nlp.metafeature_extractors_runner import MetafeatureExtractorsRunner
import pandas as pd
df = pd.dataframe({"text": ["Hi I just met you, and this is crazy", "What does the fox say?", "I love robots"})
metafeature_extractors_runner = MetafeatureExtractorsRunner()
df_with_metafeatures = metafeature_extractors_runner.run_on_dataframe(dataframe=reviews, text_column="text")
Strings
Elemeta can enrich specific strings:
from elemeta.nlp.metafeature_extractors_runner import MetafeatureExtractorsRunner
metafeature_extractors_runner = MetafeatureExtractorsRunner()
metafeature_extractors_runner.run("This is a text about how good life is :)")
Documentation
This package aims to help enrich non-tabular data (i.e. text:nlp pictures: image processing and so on). Currently, we only support textual data, and we enrich it by extracting meta features (such as avg word length).
Community
Elemeta is brand new, so we don't have a formal process for contributions just yet. If you have feedback or would like to contribute, just go ahead and post a GitHub issue
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file elemeta-1.0.5.tar.gz
.
File metadata
- Download URL: elemeta-1.0.5.tar.gz
- Upload date:
- Size: 30.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24ac4fdbbeb21b4ef5f4223f7fc7b47dfe5d6b1875bf5ba52f45f76cf57f38cf |
|
MD5 | 460be1588cb7afee13ea4f538193b65d |
|
BLAKE2b-256 | e74cce078c5f50789ec6f03662a4b1a1de241da0b61773d534b2c38b84790f15 |
File details
Details for the file elemeta-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: elemeta-1.0.5-py3-none-any.whl
- Upload date:
- Size: 30.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6e6eba134c008f3b11dce6167097dc0aa529521be815c55eafc16929ddeb6d9 |
|
MD5 | 0ba8828a9b01fdec6bb89d77f46fa812 |
|
BLAKE2b-256 | 16738a607ba5ec4e22a71a7002f1f88fd882fcc7a720f35f86d330ca681967c0 |