def use_SGD(X_data,y_data):
clf = SGDClassifier(loss="hinge", penalty="l2")
clf.fit(X_data, y_data)
return clf
# def use_KNN(X_data,y_data):
# def use_RandomForest(X_data,y_data):
load_feature.py 文件源码
python
阅读 29
收藏 0
点赞 0
评论 0
评论列表
文章目录