- 博客(24)
- 资源 (1)
- 收藏
- 关注
原创 经常使用的网站
1.Python2.人工智能1.红色石头:https://redstonewill.com/2.机器不学习:http://www.jqbxx.com/3.机器之心:https://www.jiqizhixin.com/3.Java4.c/c++5.求职1.牛客网:https://www.nowcoder.com/contestRoom...
2019-08-15 10:02:45
363
原创 Python map()函数
描述map() 会根据提供的函数对指定序列做映射。第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。语法map(function, iterable, …)function – 函数iterable – 一个或多个序列返回值Python 2.x 返回***列表***。(print变量之后可以被...
2019-07-02 13:15:59
348
原创 量化交易学习的推荐的网站
Autor : LiChong0309Label : Quantitative Trading宽客网: http://www.cnq.net/知乎专栏: 清华大学量化投资协会成果集萃:https://zhuanlan.zhihu.com/thuquant知乎话题:量化交易:https://www.zhihu.com/topic/19815465/hot知乎专栏: 量化交易&...
2018-12-29 15:29:07
4160
原创 Wireshark找到http中相应的GET和Response
Autor : LiChongLabel : Linux 、Network在使用wireshark的时候,会对每个网络操作赋予一个标记,在wireshark中使用NO表示,wireshark会显示请求对应的响应。从上图可以看到,标记位3182的http请求,对应的响应为3230参考链接:https://blog.csdn.net/buyaore_wo/article/details/6...
2018-12-21 19:38:41
8935
原创 Wireshark错误 : The capture session could not be initiated on interface 'nfqueue'
Autor : LiChong0309Lable : Linux刚安装wireshark的时候,不能直接访问任何一个网关,会出现错误:The capture session could not be initiated on interface ‘nfqueue’ (NFQNL_CFG_CMD_PF_UNBIND: Operation not permitted).环境:Deep...
2018-12-21 18:58:32
6179
原创 Visio设计产品流程图
Author: LiChong0309 Label: : Basis of Computer 产品流程图:流程图元素定义:分类业务流程图(梳理战略)任务流程图(梳理操作方式)页面流程图(梳理各页面的跳转关系)产品流程图:流程图元素定义:分类 产品中设计的流程图主要有三种: 业务流程图 任务流程图 ...
2018-08-25 15:41:26
4486
原创 深度学习(Deep Learning)入门——基本概念
Author: LiChong0309 Label: Artificial Intelligence 、Machine Learning 、Deep Learning 1.神经网络(Neural Network)基础1.1 神经元(neuron)1.2 权重(weights)1.3 偏差(bias)1.4 激活函数(Activation function)2 ...
2018-07-13 20:40:56
96998
4
原创 什么是深度学习(Deep Learning)
Author: LiChong0309 Label: Deep Learning 、Artificial Intelligence1 The Development of Deep Learning1.1 Turing Testing (图灵测试)1.2 医学上的发现1.3 Deep Learning的出现2. 机器学习3. 深度学习与传统神经网络的区别...
2018-07-13 19:10:11
10691
原创 文献搜索与下载
Author: LiChong0309 Lable: Basis of Computer1、Google,百度学术——搜索2、sci-hub对于一些所在单位没有购买想要查找的文献所在的数据库时,我们就需要一些别的方法来下载我们想要看的文献。1、Google,百度学术——搜索 Google学术搜索:https://scholar.google.com/...
2018-07-06 11:05:02
687
原创 强化学习方法汇总
Author: LiChong0309 Lable: Reinforcement Learning 、Machine Learning 、Artificial Intelligence[toc] Reinforcement Learning可以按照下面几个标准分类1. 不理解环境(Model-free) 理解环境和 (Model-based)2. 基于概率(Poli...
2018-06-29 15:07:32
1101
原创 Reinforcement learning and Deep learning
Author: LiChong0309 Lable: Reinforcement intelligence 、Deep learning、Artificial Intelligence、Machine Learning1.Artificial Intelligence2. Machine Learning3. Reinfrocement Learning4. Deep ...
2018-06-28 23:20:58
1356
原创 监督学习、无监督学习、半监督学习和强化学习
Author: LiChong Lable: Reinforcement learning、Artificial intelligence、Deep learning、Machine learning1.Machine learning2.Classification of Machine learning2.1. Supervised learning2.2. Uns...
2018-06-28 19:57:30
5681
原创 Source Code of Sarsa Algorithm -- Reinforcement Learning
Author: LiChong0309 Lable: Deep Learning、Artificial intelligence、Reinforcement Learing 1.整体模块调用2.run_this.py3.Maze_env.py Sarsa Algorithm的全部源代码的下载网址: https://github.com/MorvanZ...
2018-06-27 07:34:17
424
原创 Sarsa Algorithm and Q_Learning Algorithm-- Reinforcement Learning
Author: LiChong0309 Label: Deep learning、Artificial Intelligence、Reinforcement learning1. Introduction of Sarsa1.1 Reinforcement Learning1.1.1 General of Reinforcement Learning1.1.2 Four...
2018-06-26 11:37:35
1337
1
原创 Python -- import 和 from …import...的区别
Author: LiChong0309 Lable: Python 明确: import 和from…import…是等价的,使用其中的任意一个都是没有问题的,只是在程序中使用导入的模块中的方法时不太一样。观察下面两段实现相同功能的代码 1. import 方法import skimage img = skimage.io.imread('d:/1.png'...
2018-06-25 23:04:53
18502
原创 Python: __name__ == '__main__' 的含义
Autor: LiChong0309 Lable: Python今天查找了几个关于解释python中 __name__ == ‘__main__’含义的博客,写的都很高大上,但是读完之后完全不知道在讲什么,已近超出了我的理解范围。现在整理一下我现阶段所能理解的,当然也是现阶段够用的,以后随着深入会慢慢补充,加深理解。 明确:Python的脚本文件.py的使用方法用两种: ...
2018-06-24 11:37:28
502
1
原创 Python--计算、开方、乘方函数
Autor: LiChong0309 Label: Python1. 两个函数1.1 pow() pow(a,b) :求a^b的数值。当a为整数时,返回整数值,当a为浮点数时,返回一位小数的浮点数。1.2 sqrt() sqrt()函数不能单独使用,要先调用函数库math或者numpy才能使用。当开方得到是有限数时,返回一位...
2018-06-23 08:41:18
61803
1
原创 Win10安装Python3、Anaconda
***Autor:***LiChong Label: Python之前用是Python2.7的开发环境,但是身边的人用的都是Python3,Python2和Python3还是有些地方不兼容,所以就安装了一个Python3。 Environment: Win10 + 64bit1. Download site https://www.python.org/...
2018-06-22 23:14:29
743
原创 CSDN转发他人的博客的步骤
Autor: LiChong0309 Label: Basis of Computer 快捷键 F12 ,找到Elements 右击,选择copy,找到*Copy outerHTML 3.打开CSDN的博客编辑器,复制 如果你是转发别人的blog,请在转发的时候标注为转发,尊重原创,尊重作者。 ...
2018-06-20 19:12:36
1915
原创 CSDN 不能打开“写博客”的网页
Autor: Lichong0309 Lable: Mood、Basis of Computer1.Problem刚刚开始写博客没有几天,今天晚上想要些一篇博客,不知道复制粘贴了什么代码,然后再打开CSDN的“写博客”的网页就打不开了,然后使用的谷歌浏览器也变得非常的卡,不知道是怎么回事,具体的 情况如下图所示,一直停留在这样的界面。2.Solution然...
2018-06-20 18:23:44
2794
原创 CSDN-markdown编辑器
欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I...
2018-06-20 17:52:34
158
原创 Python -- raw_input() and input() -- ACM
Autor:LiChong0309 Label: ACM 、Python1. The problem of “A+B+C”1.1 Topic1.2 Sample input1.3 Sample output1.4 Code1.5 raw_input() and input()1.5.1 raw_input()1.5.1 input()1. T...
2018-06-20 10:27:52
552
原创 The First Step of SDN — Install Mininet、Opendaylight and Floodlight
autor : LiChong0309 Label: SDN1、Install Mininet1.1 The source code to install Mininet1.1.1 The brief introduction of Mininet1.1.2 Install Mininet1.1.2.1 Unistall original...
2018-06-19 12:46:09
829
2
原创 Close the Autoupdate on Window10(关闭win10的自动更新)
1、Use the shortcut key win + R to input services.msc, then hit OK. er the interface of services(local). 3. Find the service of Windows update. 4. Right-click to select attribute. 5.F...
2018-06-19 00:33:27
1144
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人