比赛地址:https://www.kaggle.com/
参考文章:https://blog.csdn.net/u012162613/article/details/41929171
注册好账号,验证手机号码:+86xxxxxxxxxxx 找到getting started ->digit-recognizer->join competing->Data 下载好数据集 解压后有三个文件,如图所示。
Python csv模块的使用 https://blog.csdn.net/u012162613/article/details/41915859
import csv
with open('test.csv','rb') as myFile:
lines=csv.reader(myFile)
for line in lines:
print line
参考代码: https://blog.csdn.net/u012162613/article/details/41929171
分析train.csv数据分析test.csv数据分析knn_benchmark.csv 代码地址:https://github.com/Monologuethl/ultrasound_image/tree/master/kaggkle