Skip to main content

Happy ;) Learning

Description:

Toolbox for reinforced developing of machine learning models (as proof-of-concept) in python. It is specially designed to evolve and optimize machine learning models using evolutionary algorithms both on the feature engineering side and on the hyper parameter tuning side.

Table of Content:

  1. Installation
  2. Requirements
  3. Introduction
    • Practical Usage
    • FeatureEngineer
    • FeatureTournament
    • FeatureSelector
    • FeatureLearning
    • ModelGenerator
    • NetworkGenerator
    • ClusteringGenerator
    • GeneticAlgorithm
    • SwarmIntelligence
    • DataMiner

1. Installation:

You can easily install Happy Learning via pip install happy_learning on every operating system.

2. Requirements:

  • ...

3. Introduction:

  • Practical Usage:

It covers all aspects of the developing process, such as feature engineering, feature and model selection as well as hyper parameter optimization.

  • Feature Engineer:

Process your tabular data smartly. The Feature Engineer module is equipped with all necessary (tabular) feature processing methods. Moreover, it is able to capture the metadata about the data set such as scaling measurement types of the features, taken processing steps, etc. To scale big data sets it generates temporary data files for each feature separately and loads them for processing purposes only.

  • Feature Learning:

It combines both the feature engineering module and the genetic algorithm module to create a reinforcement learning environment to smartly generate new features. The module creates separate learning environments for categorical and continuous features. The categorical features are one-hot encoded and then unified (one-hot merging). Whereas the (semi-) continuous features are systematically processed by using several transformation and interaction methods.

  • Feature Tournament:

Feature tournament is a process to evaluate the importance of each feature regarding to a specific target feature. It uses the concept of (Additive) Shapley Values to calculate the importance score.

-- Data Typing:

    Check whether represented data types of Pandas is equal to the real data types occuring in the data
  • Feature Selector:

The Feature Selector module applies the feature tournament to calculate feature importance scores and select automatically the best n features based on the scoring.

  • ModelGenerator:

The ModelGenerator module generates supervised machine learning models and all necessary hyper parameters for structured (tabular) data.

  -- Model / Hyper parameter:

     Classification models ...
        -> Ada Boosting (ada)
        -> Cat Boost (cat)
        -> Gradient Boosting Decision Tree (gbo)
        -> K-Nearest Neighbor (knn)
        -> Linear Discriminant Analysis (lida)
        -> Logisitic Regression (log)
        -> Quadratic Discriminant Analysis (qda)
        -> Random Forest (rf)
        -> Support-Vector Machine (svm)
        -> Nu-Support-Vector Machine (nusvm)
        -> Extreme Gradient Boosting Decision Tree (xgb)

     Regression models ...
        -> Ada Boosting (ada)
        -> Cat Boost (cat)
        -> Elastic Net (elastic)
        -> Generalized Additive Models (gam)
        -> Gradient Boosting Decision Tree (gbo)
        -> K-Nearest Neighbor (knn)
        -> Random Forest (rf)
        -> Support-Vector Machine (svm)
        -> Nu-Support-Vector Machine (nusvm)
        -> Extreme Gradient Boosting Decision Tree (xgb)
  • NetworkGenerator:

The NetworkGenerator module generates neural network architectures and all necessary hyper parameters for text data using PyTorch.

  -- Model / Hyper parameter:

     -> Attention Network (att)
     -> Gated Recurrent Unit (gru)
     -> Long-Short Term Memory (lstm)
     -> Multi-Layer Perceptron (mlp)
     -> Recurrent Neural Network (rnn)
     -> Recurrent Convolutional Neural Network (rcnn)
     -> Self-Attention (self)
     -> Transformer (trans)
  • ClusteringGenerator:

The ClusteringGenerator module generates unsupervised machine learning models and all necessary hyper parameters for text clustering.

  -- Model / Hyper parameter:

     -> Gibbs-Sampling Dirichlet Multinomial Modeling (gsdmm)
     -> Latent Dirichlet Allocation (lda)
     -> Latent Semantic Indexing (lsi)
     -> Non-Negative Matrix Factorization (nmf)
  • GeneticAlgorithm:

Reinforcement learning module either to evaluate the fittest model / hyper parameter configuration or to engineer (tabular) features. It captures several evaluation statistics regarding the evolution process as well as the model performance metrics. More over, it is able to transfer knowledge across re-trainings.

-- Model / Hyperparameter Optimization:

    Optimize model / hyper parameter selection ...
        -> Sklearn models
        -> Popular "stand alone" models like XGBoost, CatBoost, etc.
        -> Deep Learning models (using PyTorch only)
        -> Text clustering models (document & short-text)

-- Feature Engineering / Selection:

    Optimize feature engineering / selection using processing methods from Feature Engineer module ...
        -> Choose only features of fittest models to apply feature engineering based on the action space of the Feature Engineer module
  • SwarmIntelligence:

Reinforcement learning module either to evaluate the fittest model / hyper parameter configuration or to engineer (tabular) features. It captures several evaluation statistics regarding the evolution process as well as the model performance metrics. More over, it is able to transfer knowledge across re-trainings.

-- Model / Hyper parameter Optimization:

    Optimize model / hyper parameter selection ...
        -> Sklearn models
        -> Popular "stand alone" models like XGBoost, CatBoost, etc.
        -> Deep Learning models (using PyTorch only)
        -> Text clustering models (document & short-text)

-- Feature Engineering / Selection:

    Optimize feature engineering / selection using processing methods from Feature Engineer module ...
        -> Choose only features of fittest models to apply feature engineering based on the action space of the Feature Engineer module
  • DataMiner:

Combines all modules for handling structured (tabular) data sets. Therefore, it uses the ... -> Feature Engineer module to pre-process data in general (imputation, label encoding, date feature processing, etc.) -> Feature Learning module to smartly engineer tabular features -> Feature Selector module to select the most important features -> GeneticAlgorithm / SwarmIntelligence module to find a proper model and hyper parameter configuration by its self.

  • TextMiner

Use text data (natural language) by generating various numerical features describing the text

-- Segmentation:

    Categorize potential text features into following segments ...
        -> Web features
            1) URL
            2) EMail
        -> Enumerated features
        -> Natural language (original text features)
        -> Identifier (original id features)
        -> Unknown

-- Simple text processing:
    Apply simple processing methods to text features
        -> Merge two text features by given separator
        -> Replace occurances
        -> Subset data set or feature list by given string

-- Language methods:
    Apply methods to ...
        -> ... detect language in text
        -> ... translate using Google Translate under the hood

-- Generate linguistic features:
    Apply semantic text processing to generate numeric features
        -> Clean text counter (text after removing stop words, punctuation and special character and lemmatizing)
        -> Part-of-Speech Tagging counter & labels
        -> Named Entity Recognition counter & labels
        -> Dependencies counter & labels (Tree based / Noun Chunks)
        -> Emoji counter & labels

-- Generate similarity / clustering features:
    Apply similarity methods to generate continuous features using word embeddings
        -> TF-IDF

4. Documentation & Examples:

Check the methodology.pdf for the documentation and jupyter notebook for examples. Happy ;) Learning

Release files for happy-learning 0.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for happy-learning 0.5.0
File Size Uploaded
happy_learning-0.5.0.tar.gz 236.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for happy-learning 0.5.0
File Interpreter ABI Platform
happy_learning-0.5.0-py3.8.egg Legacy Egg format - - Details
happy_learning-0.5.0-py3-none-any.whl Python 3 none any Details

Total release size: 937.3 kB

Release files / happy_learning-0.5.0.tar.gz

Download URL happy_learning-0.5.0.tar.gz
Size 236.6 kB
Tags Source
SHA-256 checksum
How to use checksums
1cfa01ad2c07176a882d644a653307d5a867f703622054dd950492cee081ecba
BLAKE2b-256 checksum
How to use checksums
9a4070cb3eba749057af04b42d868831ed4cec2c5216c018d2c4b66d5c236ed3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.16

Release files / happy_learning-0.5.0-py3.8.egg

Download URL happy_learning-0.5.0-py3.8.egg
Size 478.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
3ebccc34d0b3be2cf9b968b8f0f478e848c279b9c6f51377302f223b12224894
BLAKE2b-256 checksum
How to use checksums
98c063461b7c409ea1636d335938cb0867b7d12653845327c5d0aa95407c57c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.16

Release files / happy_learning-0.5.0-py3-none-any.whl

Download URL happy_learning-0.5.0-py3-none-any.whl
Size 221.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c9d71f440453dac25037b08c8e9a4b4f0cbb5205e96782decbd4331ce7cef0c1
BLAKE2b-256 checksum
How to use checksums
78a2562c72bc9bc51fbe2223fb345c8bc2480ea54dbc9804bda607ee1dbe9f49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.16

Release history Release notifications | RSS feed

This release

0.5.0 This release

3 release files

0.4.9

3 release files

0.4.8

3 release files

0.4.7

3 release files

0.4.6

3 release files

0.4.5

3 release files

0.4.4

3 release files

0.4.3

3 release files

0.4.2

3 release files

0.4.1

3 release files

0.4.0

3 release files

0.3.9

3 release files

0.3.8

3 release files

0.3.7

3 release files

0.3.6

3 release files

0.3.5

3 release files

0.3.4

3 release files

0.3.3

3 release files

0.3.2

3 release files

0.3.1

3 release files

0.3.0

3 release files

0.2.9

3 release files

0.2.8

3 release files

0.2.6

3 release files

0.2.5

3 release files

0.2.4

3 release files

0.2.3

3 release files

0.2.2

3 release files

0.2.1

3 release files

0.2.0

3 release files

0.1.9

3 release files

0.1.8

3 release files

0.1.7

3 release files

0.1.6

3 release files

0.1.5

3 release files

0.1.4

3 release files

0.1.3

3 release files

0.1.2

3 release files

0.1.1

3 release files

0.1.0

3 release files

0.0.9

3 release files

0.0.8

3 release files

0.0.7

3 release files

0.0.6

3 release files

0.0.5

3 release files

0.0.4

3 release files

0.0.3

3 release files

0.0.2

3 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page