https://github.com/hadware/adfluo
A python library for multimodal and structured feature extraction, using the Dataflow design pattern
https://github.com/hadware/adfluo
dataflow feature-extraction pipeline python-library python3 python36 python37
Last synced: about 1 month ago
JSON representation
A python library for multimodal and structured feature extraction, using the Dataflow design pattern
- Host: GitHub
- URL: https://github.com/hadware/adfluo
- Owner: hadware
- License: eupl-1.2
- Created: 2021-01-04T23:15:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T13:45:59.000Z (7 months ago)
- Last Synced: 2025-04-14T01:14:11.795Z (about 1 month ago)
- Topics: dataflow, feature-extraction, pipeline, python-library, python3, python36, python37
- Language: Python
- Homepage:
- Size: 6.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# adfluo
[](https://github.com/hadware/adfluo/actions/workflows/test.yml)
[](https://github.com/hadware/adfluo/actions/workflows/doc.yml)*adfluo, adfluis, adfluere, adfluxi, adfluxum*
1. to flow on/to/towards/by
2. to glide/drift quietly`adfluo` is a Python library for pipeline-oriented feature computation, mainly aimed at tricky
multimodal datasets that might require a wide range of different features to be computed from.Adfluo makes your feature extraction code:
- **clean** : it encourages you to outline clearly the steps needed to compute
a feature as a pipeline of atomic steps
- **data scientist-friendly**: ``adfluo``'s output has a predictable structure,
ensuring that once you've run the feature extraction, you'll be able to focus a 100%
on your data-science/statistics work.
- **efficient** : if different features have computation steps in common, ``adfluo``
will do its best to compute only what is necessary, without any extra configuration.
- **reusable**: By separating the input data from the feature computation logic,
you'll easily be able to reuse an existing extraction pipeline on another dataset,
or use another extraction pipeline on the same dataset.
- **sample-oriented**: ``adfluo`` organizes its processing around samples of data.
## InstallationAdfluo is available on Pypi, and has no special dependencies, a simple
```shell
pip install adfluo
```will do.
## Example
```python
import random# Defining our dataset as a list of dicts
my_dataset = [
{"numbers" : [random.randint(1, 20) for j in range(50)],
"idx": i}
for i in range(20)
]# TODO: examples
# - mean, std dev of numbers
# - "relative" mean using idx
```##