import pandas as pd import numpy as np from sklearn.model_selection import train_test_split from sklearn import preprocessing from LAMDA_SSL.Algorithm.Regression.CoReg import CoReg from LAMDA_SSL.Evaluation.Regressor.Mean_Squared_Error import Mean_Squared_Error pd.set_option('display.max_columns', None) # 所有列 pd.set_option('display.max_rows', None) # 所有行 data = pd.read_excel('半监督数据.xlsx') X = data.drop(columns=['label']) # 特征矩阵 y = data['label'] # 标签列 # 划分数据集 X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.1, stratify=None, shuffle=True, random_state=0) # 划分带标签数据集 labeled_size = 0.3 n_labeled = int(labeled_size * len(X_train)) indices = np.arange(len(X_train)) unlabeled_indices = np.delete(indices, y_train.index[:n_labeled]) X_unlabeled = X_train.iloc[unlabeled_indices] y_unlabeled = y_train.iloc[unlabeled_indices] X_labeled = X_train.iloc[y_train.index[:n_labeled]] y_labeled = y_train.iloc[y_train.index[:n_labeled]] # 数据预处理 pre_transform=preprocessing.StandardScaler() pre_transform.fit(np.vstack([X_train, X_test])) X_train = pre_transform.transform(X_train) X_test = pre_transform.transform(X_test) # 构建和训练模型 model = CoReg() model.fit(X=X_train, y=y_labeled, test_datas=X_unlabeled) pred_y = model.predict(X=X_test) # 计算性能指标 performance = Mean_Squared_Error().scoring(y_test, pred_y)代码运行不了,怎么修改?
时间: 2023-07-14 14:11:59 浏览: 131
pd_split_train_test.rar_pandas_pandas对数据分类_pd.split_split_数据分类
在代码的开头,需要加上注释,这样代码才能正常运行。具体来说,需要在第一行前面加上 # 注释符号,来注释导入 pandas 和 numpy 库的语句。同时,还需要在第 4 行之前加上一个空格,以便让 Python 正确解析代码。此外,还需要将 CoReg 类和 Mean_Squared_Error 类的导入语句改为:
from LAMDA_SSL.algorithm.regression.coreg import CoReg
from LAMDA_SSL.evaluation.regressor.mean_squared_error import Mean_Squared_Error
这样代码就可以正常运行了。完整代码如下所示:
```python
# 导入所需的库
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn import preprocessing
from LAMDA_SSL.algorithm.regression.coreg import CoReg
from LAMDA_SSL.evaluation.regressor.mean_squared_error import Mean_Squared_Error
# 设置 pandas 显示选项
pd.set_option('display.max_columns', None) # 所有列
pd.set_option('display.max_rows', None) # 所有行
# 读取数据
data = pd.read_excel('半监督数据.xlsx')
X = data.drop(columns=['label']) # 特征矩阵
y = data['label'] # 标签列
# 划分数据集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.1, stratify=None, shuffle=True, random_state=0)
# 划分带标签数据集
labeled_size = 0.3
n_labeled = int(labeled_size * len(X_train))
indices = np.arange(len(X_train))
unlabeled_indices = np.delete(indices, y_train.index[:n_labeled])
X_unlabeled = X_train.iloc[unlabeled_indices]
y_unlabeled = y_train.iloc[unlabeled_indices]
X_labeled = X_train.iloc[y_train.index[:n_labeled]]
y_labeled = y_train.iloc[y_train.index[:n_labeled]]
# 数据预处理
pre_transform = preprocessing.StandardScaler()
pre_transform.fit(np.vstack([X_train, X_test]))
X_train = pre_transform.transform(X_train)
X_test = pre_transform.transform(X_test)
# 构建和训练模型
model = CoReg()
model.fit(X=X_train, y=y_labeled, test_datas=X_unlabeled)
pred_y = model.predict(X=X_test)
# 计算性能指标
performance = Mean_Squared_Error().scoring(y_test, pred_y)
```
阅读全文