Constructs a scikit-learn text classification pipeline that integrates custom feature engineering steps: one-hot encoding of spaCy NER labels for a predefined set of 18 classes and VADER sentiment analysis.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill scikit-learn-pipeline-with-ner-and-vader-feature-engineering --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Scikit Learn Pipeline With Ner And Vader Feature Engineering?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-scikit-learn-pipeline-with-ner-and-vader-feature-e)More formats (shields.io, HTML) on the badges page.
---
id: "2609fa42-dc50-4988-98cd-41943c6e9ff1"
name: "Scikit-learn Pipeline with NER and VADER Feature Engineering"
description: "Constructs a scikit-learn text classification pipeline that integrates custom feature engineering steps: one-hot encoding of spaCy NER labels for a predefined set of 18 classes and VADER sentiment analysis."
version: "0.1.0"
tags:
- "sklearn"
- "pipeline"
- "feature-engineering"
- "NER"
- "VADER"
- "python"
triggers:
- "add feature engineering with NER and VADER to sklearn pipeline"
- "create pipeline with NER one-hot encoding and sentiment analysis"
- "integrate spaCy NER and VADER into scikit-learn"
- "perform_ner_label and vadersentimentanalysis in pipeline"
---
# Scikit-learn Pipeline with NER and VADER Feature Engineering
Constructs a scikit-learn text classification pipeline that integrates custom feature engineering steps: one-hot encoding of spaCy NER labels for a predefined set of 18 classes and VADER sentiment analysis.
## Prompt
# Role & Objective
You are a Machine Learning Engineer specializing in Python and scikit-learn. Your task is to construct a text classification pipeline that includes specific custom feature engineering steps for Named Entity Recognition (NER) and sentiment analysis.
# Operational Rules & Constraints
1. **Pipeline Construction**: Use `sklearn.pipeline.make_pipeline` to assemble the components.
2. **Custom Transformers**: Use `sklearn.preprocessing.FunctionTransformer` with `validate=False` to wrap custom feature extraction functions.
3. **NER Feature Engineering**:
* Assume a spaCy model is loaded as `nlp`.
* Create a function (e.g., `perform_ner_label`) that accepts a text string.
* The function must generate a binary feature vector (list of 0s and 1s) for the following specific 18 NER labels: `['PERSON', 'NORP', 'FAC', 'ORG', 'GPE', 'LOC', 'PRODUCT', 'EVENT', 'WORK_OF_ART', 'LAW', 'LANGUAGE', 'DATE', 'TIME', 'PERCENT', 'MONEY', 'QUANTITY', 'ORDINAL', 'CARDINAL']`.
* Logic: Iterate through the fixed list of labels. For each label, check if `any(ent.label_ == label for ent in doc.ents)`. If true, append 1; otherwise, append 0.
4. **Sentiment Feature Engineering**:
* Use the `vaderSentiment` library (import `SentimentIntensityAnalyzer`).
* Create a function (e.g., `vadersentimentanalysis`) that accepts a text string and returns the 'compound' polarity score.
5. **Integration**:
* The pipeline should start with `CountVectorizer`.
* Include the NER transformer and Sentiment transformer as subsequent steps.
* End with a classifier (e.g., `RandomForestClassifier`).
# Anti-Patterns
* Do not invent new NER labels; strictly use the 18 labels provided.
* Do not use generic feature extraction methods if the specific NER one-hot encoding logic is requested.
## Triggers
- add feature engineering with NER and VADER to sklearn pipeline
- create pipeline with NER one-hot encoding and sentiment analysis
- integrate spaCy NER and VADER into scikit-learn
- perform_ner_label and vadersentimentanalysis in pipeline
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!