Python3的学习笔记
- 包含基础的python数据类型, 表达式, 语句, 函数, 异常, 类型
- python多线程,多进程, python网络编程, python网站开发, 入门的python爬虫, 入门的python数据处理与机器学习
- 常见数据库
- Javascript的dom模型
enlighten_python
├── 00 python工具的使用
│ ├── pdb_debuger.py
│ ├── pdb模块_调试.txt
│ ├── pip_包管理.txt
│ └── virtualenv_虚拟环境.txt
├── 00 基础
│ ├── 01网页简介
│ └── 02Linux简介
├── 01 Python 基础
│ ├── 01-04阶段总结 数据类型,流程控制.txt
│ ├── Python 00 Python的历史与使用介绍.txt
│ ├── Python 01 基础知识.txt
│ ├── Python 02 变量,运算符.txt
│ ├── Python 03 数据类型(1)数值 str.txt
│ ├── Python 03 数据类型(2)list tuple.txt
│ ├── Python 03 数据类型(3)dict set frozenset.txt
│ ├── Python 03 数据类型(4)中的方法.txt
│ ├── Python 03 数据类型(5)bytes bytearray.txt
│ ├── Python 04 流程控制 if,while,for.txt
│ ├── Python 05 作用域, 函数, 模块, 迭代器和生成器.txt
│ ├── Python 06 表达式,语句.txt
│ ├── Python 07 基本内建函数 builtin.txt
│ ├── Python 08 定义函数(1) 参数, 属性, 使用.txt
│ ├── Python 08 定义函数(2) 递归, 闭包, 装饰器.txt
│ ├── Python 09 模块(1) 导入模块, 模块属性.txt
│ ├── Python 09 模块(2) 具体模块简介.txt
│ ├── Python 09 模块(3) 自定义模块, 包.txt
│ ├── Python 10 异常1(基础).txt
│ ├── Python 10 异常2(高级).txt
│ ├── Python 11 类(10) 特性属性 @property.txt
│ ├── Python 11 类(1) 面向对象编程,.txt
│ ├── Python 11 类(2) 构造函数.txt
│ ├── Python 11 类(3) 重写.txt
│ ├── Python 11 类(4) 迭代器(高级).txt
│ ├── Python 11 类(5) 环境管理器.txt
│ ├── Python 11 类(6) 继承与派生.txt
│ ├── Python 11 类(7) 封装.txt
│ ├── Python 11 类(8) 多态.txt
│ ├── Python 11 类(9) 运算符重载.txt
│ ├── Python 12 汉字编码.txt
│ ├── Python 12 文件存储与文件处理.txt
│ ├── Python 二次理解, 1基本.txt
│ ├── python 二次理解, 2函数.txt
│ ├── python 二次理解, 3模块.txt
│ ├── python 二次理解, 4异常.txt
│ ├── python 二次理解, 5类.txt
│ ├── Python 附录 经典例题.py
│ └── Python 课中经典练习题.py
├── 02 MySQL 基础
│ ├── MySQL 01.txt
│ ├── MySQL 02.txt
│ ├── MySQL 03.txt
│ ├── MySQL 04.txt
│ ├── mysql_code/
│ ├── mysql_python_01基本结构.py
│ ├── mysql_python_02查询.py
│ ├── mysql_python_03插入.py
│ ├── mysql_python_04标准操作.py
│ ├── mysql_python_05类.py
│ ├── MySQL Python.txt
│ ├── pymysql_doc.txt
│ └── 操作数据库与数据/
├── 03 网络编程
│ ├── 01 网络基础知识 OSI七层-TCP,IP四层.png
│ ├── 01 网络基础知识 TCP连接, 三次握手.png
│ ├── 01 网络基础知识 TCP连接, 四次挥手.png
│ ├── 01 网络基础知识.txt
│ ├── 02 套接字编程TCP, UDP.txt
│ ├── 02 套接字编程, 流套接字 TCP server 和 client.PNG
│ ├── 02 套接字编程, 数据报套接字 UDP server 和 client.PNG
│ ├── 03 常见套接字属性与方法.txt
│ ├── 04 UDP广播, HTTP服务器.txt
│ ├── 05 阻塞IO, 非阻塞IO, IO多路复用.txt
│ ├── 06 本地套接字socket.AF_UNIX.txt
│ ├── 07 服务器模型.txt
│ ├── py_img_concept
│ │ ├── 3.png
│ │ ├── 5.png
│ │ ├── byte.png
│ │ ├── ctype.png
│ │ ├── ctypes_type.png
│ │ ├── osi1.png
│ │ ├── osi2.png
│ │ ├── osi.png
│ │ ├── setsockopt.png
│ │ ├── signal2.png
│ │ ├── signal.png
│ │ ├── sockopt.png
│ │ ├── TCP1.PNG
│ │ ├── tcp4层5层.png
│ │ ├── TCP_Client.PNG
│ │ ├── tcp.png
│ │ ├── TCP_Server.PNG
│ │ ├── UDP_Client.PNG
│ │ ├── UDP.PNG
│ │ ├── UDP_Server.PNG
│ │ ├── urlopen.png
│ │ ├── 互斥.png
│ │ ├── 三次挥手.png
│ │ ├── 四次挥手.png
│ │ └── 头部.png
│ ├── py_web
│ │ ├── 02 TCP一对一服务器-客户端
│ │ │ ├── tcp_client01.py
│ │ │ └── tcp_server01.py
│ │ ├── 02 UDP服务器-客户端
│ │ │ ├── udp_client01.py
│ │ │ └── udp_server01.py
│ │ ├── 03 套接字属性试验
│ │ │ └── socket_attr.py
│ │ ├── 04 http_server模型
│ │ │ ├── http_server01.py
│ │ │ ├── socket_doc36.txt
│ │ │ └── 题.html
│ │ ├── 04 tcp_http_文件传输模型
│ │ │ ├── file_client.py
│ │ │ ├── file_server.py
│ │ │ └── test_send_file
│ │ ├── 04 udp_广播
│ │ │ ├── broadcast_recv.py
│ │ │ └── broadcast_send.py
│ │ ├── 05 阻塞IO, 非阻塞IO, IO多路复用
│ │ │ ├── block_server_非阻塞IO.py
│ │ │ ├── poll_server_多路复用阻塞.py
│ │ │ ├── select_server_多路复用阻塞.py
│ │ │ ├── test_client.py
│ │ │ └── timeout_server_超时等待.py
│ │ ├── 06 本地套接字
│ │ │ ├── unix_client_recv.py
│ │ │ └── unix_server_send.py
│ │ ├── 07 http_server模型02 基于线程并发
│ │ │ ├── handler
│ │ │ │ ├── pycache
│ │ │ │ │ └── webApp.cpython-36.pyc
│ │ │ │ └── webApp.py
│ │ │ ├── template
│ │ │ │ ├── abc.html
│ │ │ │ └── index.html
│ │ │ └── thread_http_server基于线程_http并发服务器02.py
│ │ ├── 07 服务器模型-0并行服务器
│ │ │ ├── fork_tcp_server基于进程_并行服务器.py
│ │ │ ├── FTP_tcp_客户端.py
│ │ │ ├── FTP_tcp_文件服务器.py
│ │ │ ├── http.server, http服务器框架.py
│ │ │ ├── socketserver网络框架模块并发.py
│ │ │ ├── tcp_client.py
│ │ │ ├── test.html
│ │ │ └── thread_tcp_server基于线程_并发服务器.py
│ │ ├── chat_tcp_server.py
│ │ ├── tcp_client客户端基础模型.py
│ │ ├── tcp_sever服务器基础模型.py
│ │ ├── udp_client客户端基础模型.py
│ │ ├── udp_server服务器基础模型.py
│ │ ├── 粘包测试tcp_client.py
│ │ └── 粘包测试tcp_server.py
│ ├── socket_doc35.txt
│ ├── socket_doc36.txt
│ └── 各网络层协议.jpg
├── 04 多进程,多线程,协程
│ ├── 01 多任务编程基础.txt
│ ├── 02 os.fork系统接口多进程.txt
│ ├── 03 multiprocessing多进程.txt
│ ├── 04 进程间通信.txt
│ ├── 05 进程间同步和互斥.txt
│ ├── 06 threading多线程, 线程间通信.txt
│ ├── 07 线程中同步和互斥.txt
│ ├── 08 设计者模式.txt
│ ├── 09 协程.txt
│ ├── C语言数据类型与python数据类型对照.png
│ ├── hw_进程间信号发送01.py
│ ├── hw_进程间信号发送02.py
│ ├── py_process
│ │ ├── 01 多任务编程基础
│ │ │ ├── time_show01.py
│ │ │ ├── time_show02.py
│ │ │ ├── 多进程复制一半文件01.py
│ │ │ └── 多进程复制一半文件02.py
│ │ ├── 02 os.fork, os.wait, os._exit, sys.exit 进程相关
│ │ │ ├── exit01.py
│ │ │ ├── fork01.py
│ │ │ ├── fork02.py
│ │ │ ├── fork03.py
│ │ │ ├── fork_二级子进程.py
│ │ │ ├── fork_孤儿进程.py
│ │ │ ├── fork_僵尸进程.py
│ │ │ ├── wait01.py
│ │ │ ├── waitpid01.py
│ │ │ └── waitpid02.py
│ │ ├── 03 multiprocessing Process, Pool, 进程相关
│ │ │ ├── multiprocessing.Pool01.py
│ │ │ ├── multiprocessing.Pool02.py
│ │ │ ├── multiprocessing.Process01.py
│ │ │ ├── multiprocessing.Process02.py
│ │ │ └── multiprocessing.Process_daemon.py
│ │ ├── 04 管道, 队列, 共享内存, 信号, 信号量; 进程间通信
│ │ │ ├── multiprocessing.Array共享内存01.py
│ │ │ ├── multiprocessing.Pipe管道01.py
│ │ │ ├── multiprocessing.Pipe管道02.py
│ │ │ ├── multiprocessing.Queue队列01.py
│ │ │ ├── multiprocessing.Queue队列02.py
│ │ │ ├── multiprocessing.Semaphore信号量.py
│ │ │ ├── multiprocessing.Value共享内存01.py
│ │ │ ├── os.kill进程间信号.py
│ │ │ ├── signal.alarm进程间信号00alarm时钟信号.py
│ │ │ ├── signal.signal进程间信号01.py
│ │ │ └── signal.signal进程间信号02自定义函数处理信号.py
│ │ ├── 05 进程Event, 进程Lock; 进程间的同步和互斥
│ │ │ ├── multiprocessing.Event01.py
│ │ │ ├── multiprocessing.Event02.py
│ │ │ └── multiprocessing.Lock01.py
│ │ ├── 06 threading Thread, 线程间通信, 线程相关
│ │ │ ├── threading.Thread01创建线程.py
│ │ │ ├── threading.Thread02.py
│ │ │ ├── threading.Thread.daemon.py
│ │ │ └── threading线程间通信-全局变量.py
│ │ ├── 07 线程Event, 线程Lock, 线程Condition
│ │ │ ├── threading.Condition条件变量.py
│ │ │ ├── threading.Event线程事件.py
│ │ │ └── threading.Lock线程锁.py
│ │ ├── 08 设计者模式
│ │ │ └── producer_customer.py
│ │ └── 09 协程
│ │ ├── gevent_协程.py
│ │ ├── greenlet_协程.py
│ │ └── server_gevent_基于协程的服务器.py
│ ├── test_进程_线程效率测试
│ │ ├── pycache
│ │ │ └── test.cpython-35.pyc
│ │ ├── test1.py
│ │ ├── test2.py
│ │ ├── test3.py
│ │ ├── test4.py
│ │ ├── test5.py
│ │ ├── test.py
│ │ ├── test.txt
│ │ └── 探究python GIL对线程影响.py
│ └── threadpool_线程池.py
├── 05 MongoDB 基础
│ ├── MongoDB 01.txt
│ ├── MongoDB 02.txt
│ ├── MongoDB 03.txt
│ ├── MongoDB 04.txt
│ ├── MongoDB 05.txt
│ ├── MongoDB Python.txt
│ ├── MongoDB练习.txt
│ ├── mongo_存入二进制文件.py
│ ├── mongo_获取gridfs存储文件.py
│ ├── mongo_获取二进制文件.py
│ ├── pymongo.txt
│ ├── pymongo_索引聚合.py
│ └── pymongo_增删改查.py
├── 06 正则表达式
│ ├── regex1.py
│ ├── regex2.py
│ ├── regex3.py
│ ├── regex.py
│ ├── re_text_file.py
│ ├── re模块.png
│ ├── re 正则表达式.txt
│ └── test_file.txt
├── 07 项目实践
│ ├── 电子词典, http_server03.txt
│ └── 软件项目基础.txt
├── 08 网页制作
│ ├── html练习网页
│ │ ├── 01-page.html
│ │ ├── 02-ol&ul.html
│ │ ├── 03-table.html
│ │ ├── 04-form.html
│ │ ├── 05-CSS01-font.css
│ │ ├── 05-CSS01-font.html
│ │ ├── 06-CSS02-transition.html
│ │ ├── 07-CSS03-float.html
│ │ ├── 08-CSS04-position.html
│ │ ├── 09-CSS05-opacity.html
│ │ ├── 10-CSS06-transform.html
│ │ ├── images
│ │ │ ├── red_leaf02.jpg
│ │ │ ├── red_leaf.jpg
│ │ │ ├── robot.jpg
│ │ │ └── robot.png
│ │ └── videos
│ ├── templates
│ │ ├── 01 用户表单.html
│ │ ├── 02 表格实现列表效果.html
│ │ ├── 03 浮动效果.html
│ │ ├── CSS
│ │ │ ├── 02 表格实现列表效果.css
│ │ │ └── 03 浮动效果.css
│ │ └── images
│ │ └── 02表格实现列表效果.png
│ ├── WEB 01 基础, html结构.txt
│ ├── WEB 02 文本, 列表, 图像, 超链接, 表格.txt
│ ├── WEB 03 表单.txt
│ ├── WEB 04 CSS, 选择器.txt
│ ├── WEB 05 尺寸与边框, 盒子模型.txt
│ ├── WEB 06 背景属性, 文本格式化, 表格属性, 过渡属性.txt
│ ├── WEB 07 定位.txt
│ ├── WEB 08 列表属性, 显示相关属性, 转换属性.txt
│ ├── WEB 附录 块级元素, 行级元素, 常用选择器使用.txt
│ └── 经典练习
│ ├── 01fruitday.com登录/
│ └── 02模拟购物网站/
├── 10 JavaScript 基础
│ ├── 01 JavaScript 基础.txt
│ ├── 02 JavaScript 变量, 常量, 数据类型, 运算符.txt
│ ├── 03 JavaScript 流程控制, 函数.txt
│ ├── 04 JavaScript 数组, 字符串.txt
│ ├── 05 JavaScript 其他的内置对象.txt
│ ├── 06 JavaScript 外部对象BOM - DOM.txt
│ ├── 07 JavaScript DOM中的节点查, 增, 删.txt
│ ├── 08 Javascript DOM事件.txt
│ ├── BOM, DOM 树.png
│ ├── jQuery 01 介绍, jQuery选择器, jQuery操作DOM, jQuery事件.txt
│ ├── JQuery 02 jQuery动画, jQuery插件.txt
│ ├── jQuery_3.3.1.js
│ ├── window对象.png
│ ├── 计算优先级 Priority.jpg
│ └── 练习网页
│ ├── 基础练习
│ │ ├── js01-variable.html
│ │ ├── js02-datatype.html
│ │ ├── js03-logic.html
│ │ ├── js04-流程控制for.html
│ │ ├── js04-流程控制if.html
│ │ ├── js04-流程控制switch.html
│ │ ├── js04-流程控制while.html
│ │ ├── js05-variable-scope.html
│ │ ├── js06-Array01.html
│ │ ├── js06-Array02-element.html
│ │ ├── js06-Array03-值排序.html
│ │ ├── js06-Array04-stack.html
│ │ ├── js07-String01.html
│ │ ├── js07-String02-字符操作.html
│ │ ├── js07-String03-正则.html
│ │ ├── test01.html
│ │ └── test01.js
│ └── 外部对象
│ ├── 01_window_attribute.js
│ ├── 02_window.document.js
│ ├── common.js
│ ├── jq01-工厂函数.html
│ ├── jq02-selector.html
│ ├── jq03-操作对象.html
│ ├── jq04-操作对象-插入新元素.html
│ ├── jQuery_3.3.1.js
│ ├── js01.html
│ ├── js02.html
│ ├── js03-attribute.html
│ ├── js04-连接变更.html
│ ├── js04-验证输入长度.html
│ ├── js05-createElement.html
│ ├── js05-event.html
│ ├── js06-event-bubble.html
│ ├── logo1.jpg
│ ├── logo2.jpg
│ ├── test_event.html
│ └── test_interval.html
├── 11 Django 框架
│ ├── Django 01 概念基础.txt
│ ├── Django 02 url与view, 应用app.txt
│ ├── Django 03 模板template.txt
│ ├── Django 04 模型model.txt
│ ├── Django 04 模型model使用操作(1).txt
│ ├── Django 04 模型model使用操作(2).txt
│ ├── Django 05 后台管理models.txt
│ ├── Django 06 请求与响应.txt
│ ├── Django 07 表单forms.txt
│ ├── Django 08 cookies, session.txt
│ ├── Django-1.11.8.tar.gz
│ ├── django-docs-1.11-en.zip
│ └── 示例
│ ├── application_02/
│ ├── fruitday/
│ ├── model_03/
│ ├── request_respose_04/
│ └── urls_views_01/
├── 12 Tornado 框架
│ ├── note.txt
│ ├── blog_database.sql
│ ├── tornado 01/
│ ├── Tornado 01.txt
│ ├── tornado 02/
│ ├── Tornado 02.txt
│ ├── tornado_03/
│ ├── Tornado 03.txt
│ ├── tornado_04/
│ ├── Tornado 04.txt
│ ├── tornado 05/
│ ├── Tornado 05.txt
│ └── tornadobasic.py
├── 13 AJAX
│ └── ajax 基础.txt
├── 14 项目实践
│ ├── fruitday
│ ├── 项目创建.txt
│ └── 项目规划流程.txt
├── 15 爬虫
│ ├── bs4.BeautifulSoup模块.py
│ ├── lxml.etree模块.py
│ ├── Python网络爬虫讲义201807.doc
│ ├── 零零散散的知识 01.md
│ ├── 零零散散的知识 02.md
│ ├── 爬虫练习
│ │ ├── selenium浏览器驱动.py
│ │ ├── 百度搜索, 获取推荐信息.py
│ │ ├── 爬虫.py
│ │ ├── 抓取猫眼TOP100的数据.py
│ │ └── 抓取猫眼TOP100的数据re.py
│ └── 探究练习
│ ├── asyncio模块.py
│ ├── json模块.py
│ ├── re模块.py
│ ├── ssl对非国际验证的https.py
│ ├── urllib.request模块.py
│ ├── 递归的菲波那切数列.py
│ ├── 递归的汉诺塔问题.py
│ ├── 递归的最大最小值.py
│ ├── 对文件进行拷贝.py
│ ├── 封装pymysql.py
│ ├── 哈希算法.py
│ ├── 模拟help方法.py
│ └── 找不同, 去重复.py
├── 16 数据分析
│ ├── 01 numpy.txt
│ ├── 01_numpy相关示例
│ │ ├── 01_vector.py
│ │ ├── 02_array.py
│ │ ├── 03_index.py
│ │ ├── 04_dtype.py
│ │ ├── 05_slice.py
│ │ ├── 06_reshape.py
│ │ ├── 07_stack.py
│ │ └── 08_attr.py
│ ├── 02 matplotlib.txt
│ ├── 02_matplotlib相关示例
│ │ ├── 1_plot01.py
│ │ ├── 1_plot02.py
│ │ ├── 1_plot03.py
│ │ ├── 1_plot04.py
│ │ ├── 1_plot05.py
│ │ ├── 2_scatter01.py
│ │ ├── 3_figure01.py
│ │ ├── 4_subplot01.py
│ │ ├── 4_subplot02.py
│ │ ├── 4_subplot03.py
│ │ ├── 4_subplot04.py
│ │ ├── 半对数坐标.py
│ │ ├── 饼图.py
│ │ ├── 等高线.py
│ │ ├── 动画效果_泡泡.py
│ │ ├── 动画效果_信号.py
│ │ ├── 极坐标.py
│ │ ├── 区域填充.py
│ │ ├── 热力图.py
│ │ ├── 三维登高面.py
│ │ ├── 三维曲面.py
│ │ ├── 三维散点图.py
│ │ ├── 散点图.py
│ │ └── 柱状图.py
│ ├── 03 numpy_通用函数.txt
│ ├── 03_numpy通用函数相关示例
│ │ ├── aapl.csv
│ │ ├── 裁剪, 压缩, 累乘.py
│ │ ├── 股票价格的波动范围.py
│ │ ├── 股票每周的统计.py
│ │ ├── 股票每周统计2.py
│ │ ├── 股票收盘中位数.py
│ │ ├── 绘制股票k线图.py
│ │ ├── 加权平均值, 成交量加权平均VWAP.py
│ │ ├── 加权平均值, 时间加权平均TWAP.py
│ │ ├── 卷积.py
│ │ ├── 矢量化.py
│ │ ├── 收盘标准差.py
│ │ ├── 算数平均数.py
│ │ ├── 文件读存.py
│ │ ├── 线性模拟_线性拟合.py
│ │ ├── 线性模拟_线性预测.py
│ │ ├── 相关性.py
│ │ ├── 移动均线.py
│ │ ├── 针对日期处理, 星期.py
│ │ └── 最大最小值.py
│ ├── 04_numpy矩阵的使用
│ │ ├── 01_矩阵.py
│ │ ├── 02_ufunc2.py
│ │ ├── 02_ufunc.py
│ │ ├── 03_numpy.add.py
│ │ ├── 04_除.py
│ │ ├── 05_除...余数.py
│ │ ├── 06_斐波那契.py
│ │ ├── 07_lissa.py
│ │ └── lorem.html
│ ├── 04 矩阵和ufunc.txt
│ ├── 05 numpy的子模块
│ │ └── inter.py
│ ├── 05 numpy的子模块.txt
│ ├── 06 numpy的子模块, 金融计算
│ │ ├── fin.py
│ │ ├── goog.csv
│ │ └── k.py
│ └── 06 numpy的子模块, 金融计算.txt
├── 17 机器学习
│ ├── 01 机器学习 数据处理.txt
│ ├── 01 数据预处理
│ │ ├── 01.均值移除std.py
│ │ ├── 02.范围缩放mms.py
│ │ ├── 03.归一化nor.py
│ │ ├── 04.二值化bin.py
│ │ ├── 05.独热编码ohe.py
│ │ ├── 06.标签编码lab.py
│ │ ├── 07.梯度下降求极小line.py
│ │ ├── 07.梯度下降求极小line 保存该模型save.py
│ │ ├── 07.梯度下降求极小line 使用保存模型load.py
│ │ ├── 08.岭回归rdg.py
│ │ ├── 09.多项式回归.py
│ │ ├── signals.txt
│ │ └── single.txt
│ ├── 02 常见算法, 分类
│ │ ├── 10.决策树house.py
│ │ ├── 11.决策树bike.py
│ │ ├── 11.决策树fi.py
│ │ ├── 12.简单分类器sample.py
│ │ ├── 13.逻辑分类.py
│ │ ├── 14.朴素贝叶斯nb.py
│ │ ├── 15.朴素叶贝斯split.py
│ │ ├── 16.交叉验证cv.py
│ │ ├── 17.混淆矩阵cm.py
│ │ ├── 18.分类报告cr.py
│ │ ├── 19.评估汽车档次car.py
│ │ ├── 20.验证曲线vc.py
│ │ ├── 21.学习曲线lc.py
│ │ ├── 22.svm_balanced.py
│ │ ├── 22.svm_line.py
│ │ ├── 22.svm_poly.py
│ │ ├── 22.svm_prob.py
│ │ ├── 22.svm_rbf.py
│ │ ├── 23.最优超参数.py
│ │ ├── bike_day.csv
│ │ ├── bike_hour.csv
│ │ ├── car.txt
│ │ ├── multiple1.txt
│ │ ├── multiple2.txt
│ │ └── multiple3.txt
│ ├── 02 机器学习 常见算法.txt
│ ├── 03 机器学习 自然语言处理.txt
│ ├── 03 自然语言处理
│ │ ├── 01bow.py
│ │ ├── 02tf.py
│ │ ├── 03tf-idf.py
│ │ ├── 05doc.py
│ │ ├── 06.gndr.py
│ │ ├── 07sent.py
│ │ ├── 08topic.py
│ │ └── data
│ ├── 04 机器学习 音频信号.txt
│ ├── 04 音频处理
│ │ ├── 01sig.py
│ │ ├── 04spch.py
│ │ ├── signal.wav
│ │ └── speeches/
│ ├── 05 机器学习 图像处理.txt
│ ├── 05 图片处理
│ │ ├── 01basic.py
│ │ ├── 02edge.py
│ │ ├── 03eq.py
│ │ ├── 04corner.py
│ │ ├── 05star.py
│ │ ├── 06sift.py
│ │ ├── 07desc.py
│ │ ├── 08obj.py
│ │ ├── 09vidcap.py
│ │ ├── 10haar.py
│ │ ├── 11.face.py
│ │ ├── 12face1.py
│ │ ├── 13face2.py
│ │ ├── 14face3.py
│ │ ├── box.png
│ │ ├── face.jpg
│ │ ├── study.jpg
│ │ ├── sunrise.jpg
│ │ └── table.jpg
│ ├── 06 机器学习 神经网络.txt
│ ├── 06 神经网络
│ │ ├── 01neuron.py
│ │ ├── 02mono.py
│ │ └── mono.txt
│ ├── data/
│ └── 归一化.py
├── 18 git, redis简介
│ ├── git 简介.txt
│ └── redis简介.txt
├── 20 附目 喵喵喵
│ ├── 01 服务器, 运维.txt
│ ├── 02 shell编程.txt
│ ├── 03 Linux使用.txt
│ ├── 04 实践应用.txt
│ ├── day05.txt
│ └── 项目部署nginx+uwsgi+django.pdf
├── 21 附目 喵喵喵喵
│ ├── 01队列.py
│ └── 01 数据结构.txt
└── README.md