资源简介
Jason Brownlee - Machine learning Mastery with Python 高清PDF+Code
代码片段和文件信息
# Built-in datasets
# Boston house prices dataset (13x506 reals regression)
from sklearn.datasets import load_boston
boston = load_boston()
print(boston.data.shape)
print(boston.DESCR)
# Iris flower dataset (4x150 reals multi-label classification)
from sklearn.datasets import load_iris
iris = load_iris()
print(iris.data.shape)
print(iris.DESCR)
# Diabetes dataset (10x442 reals regression)
from sklearn.datasets import load_diabetes
diabetes = load_diabetes()
print(diabetes.data.shape)
# Hand-written digit dataset (64x1797 multi-label classification)
from sklearn.datasets import load_digits
digits = load_digits()
print(digits.data.shape)
# Linnerud psychological and exercise dataset (3x203x20 multivariate regression)
from sklearn.datasets import load_linnerud
linnerud = load_linnerud()
print(linnerud.data.shape)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-11-09 10:32 Machine Learning Mastery with Python\
目录 0 2017-11-09 10:31 Machine Learning Mastery with Python\Code\
文件 10244 2016-06-06 15:36 Machine Learning Mastery with Python\Code\.DS_Store
目录 0 2017-11-09 10:31 Machine Learning Mastery with Python\Code\01_Analyze_Data\
目录 0 2017-11-09 10:31 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\
文件 4551 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\iris.data.csv
文件 835 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\load_builtin_data.py
文件 283 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\load_csv.py
文件 176 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\load_csv_np.py
文件 275 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\load_csv_np_url.py
文件 227 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\load_csv_pandas.py
文件 302 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\load_csv_pandas_url.py
文件 23279 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_loading\pima-indians-diabetes.data.csv
目录 0 2017-11-09 10:31 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\
文件 336 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\class_distribution.py
文件 316 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\data_types.py
文件 396 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\describe.py
文件 309 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\dimensions.py
文件 305 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\head.py
文件 294 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\info.py
文件 420 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\pearson_correlation.py
文件 308 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\skew.py
文件 350 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_summary\spearman_correlation.py
目录 0 2017-11-09 10:31 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\
文件 397 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\boxplot.py
文件 618 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\correlation_matrix.py
文件 506 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\correlation_matrix_genetic.py
文件 390 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\density_plots.py
文件 330 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\histograms.py
文件 385 2016-06-06 15:36 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_pandas\scatterplot_matrix.py
目录 0 2017-11-09 10:31 Machine Learning Mastery with Python\Code\01_Analyze_Data\data_visualization_seaborn\
............此处省略98个文件信息
相关资源
- Deep Learning Cookbook_ practical recipes to g
- deeplearningPID
- deep learning with python 中文版
- Introduction to machine learning with python (
- Learning Data Mining With Python book 代码及数
- Introduction to Machine Learning with Python.p
- Deep Learning for Natural Language Processing
- Deep Learning With Python - Jason Brownlee
- Python-神经网络模型能够从音频演讲中
- 《深度学习Deep Learning with Python 2017》
- Learning Data Mining with Python - Second Edit
- 《深入浅出Python机器学习》源程序.
- Practical Machine Learning and Image Processin
- python+keras+deeplearning
- 基于Python的深度学习
- Hands-On Unsupervised Learning Using Python.pd
- Python Machine Learning( Python机器学习.
- Hands On Machine Learning with Python: Concept
- XGBoost with Python (book + complete code fo
- Python for ProbabilityStatisticsand Machine Le
- deep_learning_with_python.pdf(Jason Brownlee)
- python machine learning(2nd
- Deep Learning with Python by Francois Chollet (
- master machine learning一套书籍
- Hands-On_Reinforcement_Learning_with_Python
- BrownLee Better Deep Learning
- Learning IPython for Interactive Computing and
- Learning OpenCV 3 Computer Vision with Python
- 《Learning data mining with python》中文版
- Deep_Learning_for_Computer_Vision_with_Python_
评论
共有 条评论