机器学习-liuyubobobo(慕课网)

第一章 python3玩转机器学习

第二章 机器学习基础

安装:1.anaconda   2.pycharm

第三章 Jupyter Notebook,numpy,Matplotlib

1.jupyter notebook 魔法命令: %run  %timeit  %time

2.numpy基础:  numpy.array   numpy.dtype

3.numpy数组和矩阵:numpy.zeros()   numpy.ones()     numpy.full()     numpy.arange()    numpy.linspace()     numpy.random.randint()          numpy.random.random()      numpy.random.normal()

   查命令   numpy.random?

4.numpy数组基本操作:x为数组,求基本属性:   x.ndim       x.shape    x.size    

                                       numpy.array数据访问:   x[头:尾:步长, 头:尾:步长]     subx=x[:2, :3].copy()        A=x.reshape(2,5)

5.numpy数组的合并与分割:

猜你喜欢

转载自www.cnblogs.com/yawenw/p/10878375.html