-
Updated
Oct 8, 2020 - Python
genetic-algorithm
Here are 910 public repositories matching this topic...
-
Updated
Sep 22, 2020 - Python
-
Updated
Aug 29, 2020 - Python
-
Updated
Jul 5, 2020 - Python
-
Updated
Apr 23, 2020 - Python
-
Updated
Dec 23, 2018 - Python
-
Updated
Jul 19, 2019 - Python
-
Updated
Sep 22, 2020 - Python
-
Updated
Oct 29, 2019 - Python
-
Updated
Oct 8, 2020 - Python
-
Updated
Oct 4, 2020 - Python
-
Updated
Oct 4, 2020 - Python
-
Updated
Sep 23, 2020 - Python
-
Updated
Jul 20, 2019 - Python
-
Updated
Nov 9, 2019 - Python
-
Updated
May 1, 2017 - Python
-
Updated
Sep 23, 2020 - Python
-
Updated
Feb 2, 2020 - Python
-
Updated
Oct 10, 2018 - Python
-
Updated
Oct 7, 2019 - Python
-
Updated
Oct 1, 2020 - Python
-
Updated
Jul 21, 2019 - Python
-
Updated
Sep 14, 2020 - Python
-
Updated
Jun 26, 2017 - Python
-
Updated
Dec 21, 2018 - Python
-
Updated
May 26, 2020 - Python
-
Updated
May 16, 2020 - Python
-
Updated
Jul 24, 2019 - Python
-
Updated
Jun 12, 2020 - Python
Improve this page
Add a description, image, and links to the genetic-algorithm topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the genetic-algorithm 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()