光谱波长选择(特征选取)---遗传算法

光谱波长选择(特征选取)—遗传算法

将要解决的问题模拟成一个生物进化的过程,通过复制、交叉、突变等操作产生下一代的解,并逐步淘汰掉适应度函数值低的解,增加适应度函数值高的解。这样进化N代后就很有可能会进化出适应度函数值很高的个体。
数据来源
数据来源https://eigenvector.com/resources/data-sets/

该数据集包含在 3 个不同的 NIR 光谱仪上测量的 80 个玉米样品,波长范围为 1100-2498nm
1.导入数据

data_path = '../../data/corn/m5.csv'  # 数据
label_path = '../../data/corn/label.csv'  # 标签

data = np.loadtxt(open(data_path, 'rb'), dtype=np.float64, delimiter=',', skiprows=0)
X = data[:, :]
label = np.loadtxt(open(label_path, 'rb'), dtype=np.float64, delimiter=',', skiprows=0)  # 用于建模
y = np.array(label[:, 1]).astype(float)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=0)

2.建立回归函数(遗传算法所需的适应度函数)

estimator = SVR(gamma='auto')  # 回归函数
selector = GeneticSelectionCV(estimator,
                              cv=20,
                              verbose=1,
                              scoring="neg_mean_squared_error",
                              max_features=10,
                              n_population=100,
                              crossover_proba=0.5,
                              mutation_proba=0.1,
                              n_generations=200,
                              crossover_independent_proba=0.5,
                              mutation_independent_proba=0.05,
                              tournament_size=3,
                              n_gen_no_change=10,
                              caching=True,
                              n_jobs=-1)

# Train and select the features
selector.fit(X_train, y_train.ravel())

光谱波长选择(特征选取)---遗传算法_第1张图片
github仓库地址:https://github.com/STACCCCEY/genetic-algorithm

你可能感兴趣的:(近红外光谱,python)