The Wayback Machine - https://web.archive.org/web/20220409020725/https://github.com/topics/feature-selection
Skip to content
#

feature-selection

Here are 934 public repositories matching this topic...

feature_engine
evalml
chukarsten
chukarsten commented Feb 15, 2022

In #3324 , we had to mark some tests as expected to fail since XGBoost was throwing a FutureWarning. The warning has been addressed in XGBoost, so we're just waiting for the PR merged to be released. This issue is discussed in the #3275 issue.

evalml/tests/component_tests/test_xgboost_classifier.py needs to have the @pytest.mark.xfail removed f

testing good first issue tech debt

Feature engineering is the process of using domain knowledge to extract features from raw data via data mining techniques. These features can be used to improve the performance of machine learning algorithms. Feature engineering can be considered as applied machine learning itself.

  • Updated Nov 29, 2020
  • Jupyter Notebook
chunyanyin11
chunyanyin11 commented Dec 21, 2018

Hello, when I ran your code got "TypeError: unhashable type: 'slice' ".Can you help me analyze the problem?thanks

`
import pandas as pd
from sklearn.linear_model import LogisticRegression
from feature_selection_ga import FeatureSelectionGA
data = pd.read_excel("D:\Project_CAD\实验6\data\train_data_1\train_1.xlsx")
x, y = data.iloc[:, :53], data.iloc[:, 56]
model = LogisticRegression()

zoofs

zoofs is a python library for performing feature selection using a variety of nature-inspired wrapper algorithms. The algorithms range from swarm-intelligence to physics-based to Evolutionary. It's easy to use , flexible and powerful tool to reduce your feature size.

  • Updated Mar 30, 2022
  • Python

Improve this page

Add a description, image, and links to the feature-selection topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the feature-selection topic, visit your repo's landing page and select "manage topics."

Learn more