#
deap
Here are 60 public repositories matching this topic...
CNN architecture exploration using Genetic Algorithm
-
Updated
Jul 20, 2019 - Python
rodrigo-arenas
commented
Jun 22, 2021
Is your feature request related to a problem? Please describe.
NA
Describe the solution you'd like
Implement in the sklearn_genetic.plots module a function named plot_parallel_coordinates to inspect the results of the learning process
Describe alternatives you've considered
The function should take two arguments:
- estimator: A fitted estimator from `sklearn_genetic.G
A Python implementation of the decomposition based multi-objective evolutionary algorithm (MOEA/D)
-
Updated
Oct 19, 2020 - Python
A project on improving Neural Networks performance by using Genetic Algorithms.
neural-network
tensorflow
neat
genetic-algorithm
neuroevolution
python3
transfer-learning
memetic-algorithms
deap
nsga2
-
Updated
Apr 20, 2020 - Python
Emotional Video to Audio Transformation with ANFIS-DeepRNN (Vanilla RNN and LSTM-DeepRNN) [MPE 2020]
audio
machine-learning
audio-features
matlab
machinelearning
music-generation
anfis
deap
deap-dataset
visual-features
lindsey-stirling-dataset
emotion-labels
-
Updated
Apr 16, 2020 - MATLAB
Kaggle LANL Earthquake Prediction challenge, Genetic Algorithm (DEAP) + CatboostRegressor, private score 2.425 (31 place)
-
Updated
Jan 24, 2021 - Python
Genetic algorithm to solve modular exams scheduling problem written in Python.
-
Updated
Apr 26, 2017 - Python
Trefle is a scikit-learn compatible estimator implementing the FuzzyCoCo algorithm that uses a cooperative coevolution algorithm to find and build interpretable fuzzy systems.
python
data-science
machine-learning
scikit-learn
evolutionary-algorithm
fuzzy-logic
deap
interpretability
-
Updated
Jan 12, 2019 - Python
Python Evolutionary Algorithm Visualisation toolkit on DEAP
-
Updated
Dec 27, 2017 - Python
python
genetic-programming
evolutionary-algorithms
genetic-algorithms
evolutionary-strategy
pso
deap
xcs
-
Updated
May 10, 2019 - Jupyter Notebook
A stochastic circuit optimizer for Cadence Virtuoso, using the NSGA-II genetic algorithm.
python
genetic-algorithm
circuit
optimization-tools
circuit-simulation
nsga-ii
cadence-virtuoso
deap
ade-xl
-
Updated
Dec 12, 2021 - Python
Code for my Master's Thesis at the Institute of Medical Informatics, Universität zu Lübeck.
tensorflow
keras
human-activity-recognition
deap
keras-tensorflow
opportunity
emotion-recognition
multi-task-learning
-
Updated
Jul 29, 2021 - Python
Motif discovery for DNA sequences using multiobjective optimization and genetic programming.
python
bioinformatics
transcription-factors
motif
dna
genetic-programming
chip-seq
regular-expressions
strongly-typed
transcription-factor-binding
pareto-front
dna-sequences
sequences
nsga-ii
multiobjective-optimization
network-expressions
motif-discovery
deap
jaspar
-
Updated
Jul 24, 2018 - Python
PyTEAP: A Python implementation of Toolbox for Emotion Analysis using Physiological signals (TEAP).
-
Updated
Dec 8, 2020 - Python
( 🦉 ) This code lab intended to introduce new Machine Learning Algorithm // DEAP : Distributed Evolutionary Algorithm Framework.
-
Updated
Apr 2, 2018 - Jupyter Notebook
Evolutionary Composition uses genetic algorithms to create and enhance musical melodies.
-
Updated
May 5, 2021 - Python
Distributed Evolutionary Algorithms in Golang
-
Updated
Aug 3, 2018 - Go
Protein-Protein Docking using Genetic Algorithm
bioinformatics
chemistry
structural-biology
genetic-algorithm
protein-structure
computational-biology
protein
docking
protein-protein-interaction
deap
structural-bioinformatics
protein-docking
-
Updated
Oct 31, 2021 - Python
Seminar project at FER led by Assistant Professor Marko Čupić
python
latex
paper
numpy
genetic-algorithm
python3
lead
approximation
evolutionary-algorithms
matplotlib
sympy
seminar
function-approximation
deap
-
Updated
Jun 12, 2020 - TeX
This repository helps creating a docker container with lots of evolutionary algorithms packages in python
-
Updated
Oct 7, 2017 - Shell
EEG - Music Cross Modal Learning
music
eeg
affective-computing
deap
emotion-recognition
multimodal-learning
music-cognition
cross-modal-retrieval
-
Updated
Oct 13, 2021 - Python
EPTune: Parameter Tuning using Evolutionary Algorithm.
-
Updated
Nov 21, 2020 - Jupyter Notebook
Proof of concept about DEAP in Python in order to solve TSP
-
Updated
Nov 22, 2017 - Python
Playing the (in)famous Flappy Bird game using NEAT and Differential Evolution.
-
Updated
Mar 26, 2019 - Python
Playing around with DEAP's genetic programming to generate a regex that matches everything in one list and nothing in another list
-
Updated
Dec 5, 2020 - Python
Solving the n-queens chessboard problem using DEAP evolutionary algorithms and genetic programming.
-
Updated
Oct 19, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the deap topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the deap 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()