kaggle数据集
可供所有人使用的Kaggle数据集集合
系统
Python 3.5
Python 3.6
Python 3.7
Linux
苹果系统
视窗
有关Kaggle数据集的更多信息
import kaggledatasets as kd
heart_disease = kd . structured . HeartDiseaseUCI ( download = True )
# Returns the pandas data frame to be used in Scikit Learn or any other framework
df = heart_disease . data_frame ()
# Returns the tensorflow dataset type compatible with TF 2.0
dataset = heart_disease . load ()
for batch , label in dataset . take ( 1 ):
for key , value in batch . items ():
1