07 2019 档案

机器学习笔记--classification_report&精确度/召回率/F1值
摘要:https://blog.csdn.net/akadiao/article/details/78788864 准确率=正确数/预测正确数=P 召回率=正确数/真实正确数=R F1 F1值是精确度和召回率的调和平均值: 阅读全文

posted @ 2019-07-29 11:46 黎明NB 阅读(544) 评论(0) 推荐(0)

pandas操作excel
摘要:excel_writer = pd.io.excel.ExcelFile(路径) 阅读全文

posted @ 2019-07-29 11:19 黎明NB 阅读(260) 评论(0) 推荐(0)

判断数据库某个字段是否为空
摘要:sql 查询某字段为空 select * from 表名 where 字段名 is null sql 查询某字段不为空 select * from 表名 where 字段名 is not null sql查询字段1为空且字段2不为空的数据 select * from 表名 where 字段名1 is 阅读全文

posted @ 2019-07-26 16:07 黎明NB 阅读(5870) 评论(0) 推荐(0)

django rest framework serializers小结
摘要:https://www.cnblogs.com/hanbowen/p/10063847.html 阅读全文

posted @ 2019-07-26 14:08 黎明NB 阅读(136) 评论(0) 推荐(0)

Anaconda详细安装及使用教程(带图文)
摘要:https://blog.csdn.net/ITLearnHall/article/details/81708148 阅读全文

posted @ 2019-07-25 09:56 黎明NB 阅读(1434) 评论(0) 推荐(0)

Nginx 作为反向代理优化要点proxy_buffering
摘要:https://blog.csdn.net/cymm_liu/article/details/76667153 阅读全文

posted @ 2019-07-24 16:53 黎明NB 阅读(546) 评论(0) 推荐(0)

Scikit-learn使用总结
摘要:https://www.jianshu.com/p/516f009c0875 阅读全文

posted @ 2019-07-24 14:59 黎明NB 阅读(145) 评论(0) 推荐(0)

如何将Vue项目部署到Nginx 服务器中
摘要:https://blog.csdn.net/qq_35366269/article/details/91385689 阅读全文

posted @ 2019-07-23 21:07 黎明NB 阅读(2432) 评论(0) 推荐(0)

建立一个更高级别的查询 API:正确使用Django ORM 的方式
摘要:https://www.oschina.net/translate/higher-level-query-api-django-orm 阅读全文

posted @ 2019-07-22 17:50 黎明NB 阅读(147) 评论(0) 推荐(0)

Django 数据聚合函数 annotate
摘要:https://www.cnblogs.com/yanzi-meng/p/7779336.html 阅读全文

posted @ 2019-07-22 17:47 黎明NB 阅读(186) 评论(0) 推荐(0)

查询优化之select_related与prefetch_related
摘要:https://www.jianshu.com/p/ce8bcc339c85 阅读全文

posted @ 2019-07-22 17:00 黎明NB 阅读(269) 评论(0) 推荐(0)

django values 与values_list
摘要:https://www.jianshu.com/p/e92ab45075d5 阅读全文

posted @ 2019-07-22 14:12 黎明NB 阅读(503) 评论(0) 推荐(0)

Flask-Login 让实现登录功能变简单
摘要:https://www.jianshu.com/p/01384ee741b6 阅读全文

posted @ 2019-07-21 14:29 黎明NB 阅读(367) 评论(0) 推荐(0)

仿flask写的web框架
摘要:某大佬仿flask写的web框架 web_frame.py app.py 对理解flask的请求流程有一定帮助 阅读全文

posted @ 2019-07-18 17:25 黎明NB 阅读(270) 评论(0) 推荐(0)

django的model继承abstract,proxy,managed
摘要:https://www.cnblogs.com/wangwei916797941/p/9525127.html?from=timeline 阅读全文

posted @ 2019-07-18 17:18 黎明NB 阅读(174) 评论(0) 推荐(0)

微信推送消息
摘要:https://github.com/JackonYang/wechat-notification 阅读全文

posted @ 2019-07-18 17:17 黎明NB 阅读(141) 评论(0) 推荐(0)

Django使用Redis进行缓存详细最全流程
摘要:https://blog.csdn.net/sinat_29699167/article/details/79699200 阅读全文

posted @ 2019-07-16 14:13 黎明NB 阅读(981) 评论(0) 推荐(0)

为什么要把系统拆分成分布式的,为啥要用Dubbo?
摘要:https://mp.weixin.qq.com/s/1xVZ_1ku6SaUPaG58rgz8w 阅读全文

posted @ 2019-07-16 14:01 黎明NB 阅读(285) 评论(0) 推荐(0)

Pycharm远程连接服务器(windows下远程修改服务器代码)
摘要:https://blog.csdn.net/weixin_42270275/article/details/88428489报manage.py异常时 加上 runserver 0.0.0.0:9999 阅读全文

posted @ 2019-07-16 09:41 黎明NB 阅读(288) 评论(0) 推荐(0)

Navicat 连接MongoDB 查询语句
摘要:https://www.cnblogs.com/viviman/archive/2012/11/21/2780562.html 阅读全文

posted @ 2019-07-11 10:18 黎明NB 阅读(8861) 评论(0) 推荐(0)

python3使用requests和requests_toolbelt上传文件
摘要:https://blog.csdn.net/summerpowerz/article/details/80293235 https://blog.csdn.net/lhh08hasee/article/details/89642160 阅读全文

posted @ 2019-07-05 17:31 黎明NB 阅读(1781) 评论(0) 推荐(0)

Python 工匠
摘要:https://github.com/piglei/one-python-craftsman/blob/master/zh_CN/7-two-tips-on-loop-writing.md 阅读全文

posted @ 2019-07-02 11:51 黎明NB 阅读(665) 评论(0) 推荐(1)

Git冲突:commit your changes or stash them before you can merge.
摘要:https://blog.csdn.net/lincyang/article/details/21519333 阅读全文

posted @ 2019-07-01 15:59 黎明NB 阅读(116) 评论(0) 推荐(0)

导航