-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如何对sklearn的模型添加数据预处理 #27
Comments
第一个问题,可以参考HyperX类的数据增强和预处理方式进行数据扩展后再使用sklearn模型进行读取分类处理。 |
我尝试过使用test_gt来构建测试集,但我发现在 |
build_dataset出来 X_test进行预测, 根据输出 y_test_predict数据大小转换成数据对应的格式大小, 使用img.shape[:2]肯定不合理. |
第二个问题,刚才看了下代码,我感觉这个影响不大。在main中320行,统计test accuracy只统计了test 数据那一部分。
|
理解了,感谢感谢 |
作者您好,我想问一下
使用sklearn的模型来分类的话,可以在代码的哪些地方添加数据预处理(是个人的一些预处理)
因为我看到sklearn模型的数据都是原始数据,不像pytorch的HyperX类,可以添加数据预处理
另外还有一个小小的疑问
我看到sklearn的模型中,训练数据是img的一部分,但是用来预测的数据是整个img,请问这会不会导致测试集中存在训练集的问题
The text was updated successfully, but these errors were encountered: