Twilighce


  • Home

  • Tags

  • Categories

  • Archives

HTTP_request_method

Posted on 2017-01-20 | In study notes | Visitors:

HTTP请求的格式:

  • 请求行:
    • 请求方法/URI协议/版本。eg:GET/sample.jsp HTTP/1.1
Read more »

Python_5

Posted on 2017-01-18 | In study notes | Visitors:

特殊方法与多范式

Python的多范式依赖于Python对象中的特殊方法(special method)。
特殊方法:名字前后各有两个下划线,定义了许多Python 语法和表达方式。

Read more »

Python_4

Posted on 2017-01-18 | In study notes | Visitors:

循环设计

1、range()

利用enumerate()函数,可以在每次循环中同时得到下标和元素:

1
2
3
S = 'abcdefrhijk'
for i in range(0, len(S), 2):
print S[i]
Read more »

Python_3

Posted on 2017-01-17 | In study notes | Visitors:

词典

与列表相似,词典也可以储存多个元素。
这种储存多个元素的对象称为容器(container)。

Read more »

Python_2

Posted on 2017-01-17 | In study notes | Visitors:

循环

1、for循环

1
2
for 元素 in 序列:
statement
Read more »

Python_1

Posted on 2017-01-17 | In study notes | Visitors:

基本数据类型

1、变量不需要声明

1
2
3
a = 10
print a
print type(a)
Read more »

more-about-regular_exprexxion

Posted on 2017-01-17 | In study notes | Visitors:

扩展规则

+ :重复一个或一个以上的前一个 RE 字符

1
2
$ egrep -n 'go+d' reguar_express.txt
// 含一个以上o
Read more »

sed

Posted on 2017-01-17 | In study notes | Visitors:

sed

  • sed 是非交互式的编辑器。它不会修改文件,除非使用 shell 重定向来保存结果。默认情况下,所有的输出行都被打印到屏幕上。
Read more »

grep

Posted on 2017-01-17 | In study notes | Visitors:

新建文本并编辑:

1
2
3
$ touch regular_express.txt
$ sudo gedit regular_express.txt
Read more »

NP2016

Posted on 2017-01-04 | In course notes | Visitors:

1. 项目简介

(1) 神经网络实现手写字符识别系统

  • 使用带标签的手写字符数据训练一个神经网络模型,并使用BP反向传播算法对参数进行校正,最终建立一个手写字符训练模型。用户可以在web端的canvas画布上手写数字,当点击Test的时候,就会将该手写字符数据传输到训练模型中,然后返回其预测值;当点击Train的时候,就可以根据人提供的真实数据进行训练。
Read more »
1…345
Itachi

Itachi

47 posts
5 categories
15 tags
GitHub
© 2017 Itachi
Powered by Hexo
|
Theme — NexT.Pisces v5.1.2