GithubHelp home page GithubHelp logo

hadware / adfluo Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 6.11 MB

A python library for multimodal and structured feature extraction, using the Dataflow design pattern

License: European Union Public License 1.2

Python 100.00%
python-library feature-extraction dataflow pipeline python3 python36 python37

adfluo's Introduction

adfluo

Tests Documentation

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.

Installation

Adfluo is available on Pypi, and has no special dependencies, a simple

pip install adfluo

will do.

Example

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

adfluo's People

Contributors

hadware avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.