北邮复试笔试复习 Posted on 2018-02-20 | Post modified: 2018-07-29 | In BUPT | Visitors: Words count in article: 4,656 | Reading time ≈ 16分钟 这是我自己复习的时候做的笔记,需要的同学可以简单浏览,最主要的还是多去做真题。 第一门:软件工程导学:软件开发过程:6点 做什么:需求分析 怎么做:系统设计 具体做:系统开发 检查对不对:测试人员 让用户用:工程实施人员 维护系统:系统维护人员 软件工程概述 软件的定义:软件=程序+数据+文 ... Read more »
Tornado学习小结 Posted on 2018-02-14 | Post modified: 2018-07-28 | In App | Visitors: Words count in article: 841 | Reading time ≈ 4分钟 概述它是非阻塞式服务器,而且性能十分优越,Tornado 每秒可以处理数以千计的连接,因此 Tornado 是实时 Web 服务的一个理想框架,专门解决C10K问题。 模块主要模块 tornado.web:包含了大多数重要的功能 tornado.escape: XHTML、JSON、URL的编码解 ... Read more »
北邮机试打印资料 Posted on 2018-02-13 | Post modified: 2018-07-29 | In BUPT | Visitors: Words count in article: 3,353 | Reading time ≈ 18分钟 北邮复试的机试环节是可以带资料的。我整理了当时机试我准备的资料给需要的同学做参考。以下代码均可在机试环境中运行。 机试导入头文件1234567891011121314151617181920212223242526272829303132333435363738#include<iost ... Read more »
colah对BP算法的详细讲解 Posted on 2018-01-24 | Post modified: 2018-07-28 | In MachineLearning | Visitors: Words count in article: 602 | Reading time ≈ 2分钟 引入计算图如下计算图是为$e=(a+b)(b+1)$.我们可以为节点$a$&节点$b$赋值来计算$e$ Factoring Path(路径因式分解)考虑对下图的链式法则:如果我们想要计算出$\frac{\partial Z}{\partial X}$,则必须要计算$3*3=9$条路径: $ ... Read more »
常见技术投资指标学习 Posted on 2018-01-23 | Post modified: 2018-07-28 | In QuantitativeInvestment | Visitors: Words count in article: 1,171 | Reading time ≈ 4分钟 DDX 大单买入量 (以占流通盘比例的方式) ,目前主力造假较多(拆单软件)。红色买入,绿色卖出。 注意事项 若股价大幅拉升&高DDX值:主力疯狂拉动,介入风险极大。 安全介入点:DDX与DDY背离 换手率作为补充条件:以超过3%为标准 DDY 当日卖出单数减去买入单数占散户人数(估算 ... Read more »
Python语言学习 Posted on 2017-12-07 | Post modified: 2018-09-05 | In Python | Visitors: Words count in article: 2,135 | Reading time ≈ 9分钟 面向对象静态函数,类函数,成员函数,属性函数的区别补充知识: 实例变量:每个实例独有的变量 类变量:所有实例共享的变量 形象理解:哈士奇(类变量)是狗的一种,而每只狗都只会有一个主人给它取唯一的名字,例如“蛤蛤”(成员变量)。用代码来解释就是 1234class Dog: kind = &q ... Read more »
Latex&Mathjax使用 Posted on 2017-09-06 | Post modified: 2018-08-19 | In Paper | Visitors: Words count in article: 985 | Reading time ≈ 4分钟 Latex环境配置:在Mac上通过Sublime、Skim编辑LaTeX 在Sublime Text中安装Package Control 进入Package Control官网复制灰色区块的代码。 打开Sublime Text。 使用快捷键“control+~”(~就在Esc键的下方)打开控制面板 ... Read more »
手写笔记目录 Posted on 2017-07-30 | Post modified: 2022-05-27 | In Blog | Visitors: Words count in article: 95 | Reading time ≈ 1分钟 研究生课程笔记模式识别与机器学习课堂笔记考试大抄信息科学原理课堂笔记题目索引题目参考自学课程笔记DeepLearning.ai阅读随笔深度学习设计理念语言学习GREGRE阅读直播讲义GRE阅读作业任务GRE填空直播录播合集#### GRE填空单词 Read more »
Python常用模块 Posted on 2017-06-10 | Post modified: 2018-10-03 | In Python | Visitors: Words count in article: 2,614 | Reading time ≈ 12分钟 python logging模块 Python引入了logging模块来记录用户想要查看的信息。 日志级别当我们执行如下代码:1234567import logging # 引入logging模块# 将信息打印到控制台上logging.debug(u"A")logging ... Read more »
Git使用备忘录 Posted on 2017-04-16 | Post modified: 2018-08-18 | In Linux | Visitors: Words count in article: 445 | Reading time ≈ 2分钟 指令速查 雷区勿踩 常见错误和小技巧git pull失败,提示:fatal: refusing to merge unrelated histories123git pull origin master --allow-unrelated-histories#之后再git push origin ... Read more »