-
Updated
Nov 1, 2020 - R
feature-selection
Here are 582 public repositories matching this topic...
-
Updated
Jul 15, 2020 - Jupyter Notebook
-
Updated
Feb 14, 2017 - Jupyter Notebook
-
Updated
May 8, 2019 - Python
-
Updated
Dec 15, 2018 - Jupyter Notebook
-
Updated
Aug 21, 2020 - Python
-
Updated
Jul 2, 2020 - Python
-
Updated
Oct 27, 2020 - Jupyter Notebook
-
Updated
Sep 10, 2020 - Python
-
Updated
Sep 14, 2018 - Python
-
Updated
Oct 22, 2020 - Jupyter Notebook
-
Updated
Mar 21, 2019 - Jupyter Notebook
-
Updated
Jan 22, 2018 - Python
-
Updated
Jul 21, 2020 - Jupyter Notebook
-
Updated
Aug 11, 2020 - Python
-
Updated
May 24, 2020 - Jupyter Notebook
-
Updated
Oct 12, 2020 - Scala
-
Updated
Apr 5, 2020 - Jupyter Notebook
-
Updated
Jun 19, 2020 - Python
-
Updated
Oct 10, 2020 - Python
-
Updated
Oct 19, 2020 - Python
-
Updated
Nov 2, 2020 - C++
-
Updated
Feb 4, 2019 - C++
-
Updated
Jul 6, 2020 - Python
-
Updated
May 26, 2020 - Python
-
Updated
Jul 29, 2019 - C
-
Updated
Dec 15, 2018 - Python
-
Updated
Mar 23, 2020 - Python
-
Updated
Dec 7, 2019 - Jupyter Notebook
Improve this page
Add a description, image, and links to the feature-selection topic page so that developers can more easily learn about it.
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."
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()