Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
Toy-MT-Introduction
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
NiuTrans
Toy-MT-Introduction
Commits
ccc94355
Commit
ccc94355
authored
Aug 29, 2019
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new page for perceptron
parent
1707baea
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
52 行增加
和
11 行删除
+52
-11
Section05-Neural-Networks-and-Language-Modeling/section05.pdf
+0
-0
Section05-Neural-Networks-and-Language-Modeling/section05.tex
+52
-11
没有找到文件。
Section05-Neural-Networks-and-Language-Modeling/section05.pdf
查看文件 @
ccc94355
No preview for this file type
Section05-Neural-Networks-and-Language-Modeling/section05.tex
查看文件 @
ccc94355
...
...
@@ -292,7 +292,7 @@ y = f(w \cdot x + b)
%%%------------------------------------------------------------------------------------------------------------
%%% 感知机
\begin{frame}
{
最简单的人工神经元模型 - 感知机
}
\begin{frame}
{
最简单的人工神经元模型 - 感知机
(Perceptron)
}
\begin{itemize}
\item
感知机是人工神经元的一种实例。在上世纪50-60年代被提出后,对神经网络研究产生了深远影响。
\begin{itemize}
...
...
@@ -351,8 +351,8 @@ y = f(w \cdot x + b)
\end{frame}
%%%------------------------------------------------------------------------------------------------------------
%%% 感知机 - 一个
实例
\begin{frame}
{
一个
实例
}
%%% 感知机 - 一个
例子
\begin{frame}
{
一个
例子
}
\begin{itemize}
\item
一个非常简单的例子。比如,有一个音乐会,你正在纠结是否去参加,有三个因素会影响你的决定
\begin{itemize}
...
...
@@ -373,8 +373,8 @@ y = f(w \cdot x + b)
\end{frame}
%%%------------------------------------------------------------------------------------------------------------
%%% 感知机 - 一个
实例
(cont)
\begin{frame}
{
一个
实例
(继续)
}
%%% 感知机 - 一个
例子
(cont)
\begin{frame}
{
一个
例子
(继续)
}
\begin{itemize}
\item
可以看出,实际上这个决策过程本质上就是一个感知机
\item
<2-> 但是,人并不是完美的,往往对有些事情会更在意一些。如果你是
\textbf
{
守财奴
}
,因此会对票价看的更重一些,这时你会用不均匀的权重计算每个因素的影响,比如:
$
w
_
0
=
0
.
5
$
,
$
w
_
1
=
2
$
,
$
w
_
2
=
0
.
5
$
...
...
@@ -420,17 +420,58 @@ y = f(w \cdot x + b)
\end{frame}
%%%------------------------------------------------------------------------------------------------------------
%%% 感知机 - 一个实例(cont2)
\begin{frame}
{
一个实例(还在继续)
}
%%% 感知机 - 一个例子(cont2)
\begin{frame}
{
一个例子(还在继续)
}
\begin{itemize}
\item
在
受到了女朋
友一万点伤害之后,你意识到决策不应该只考虑非0即1的因素,应该把"程度"考虑进来:
\item
在
遭受了女
友一万点伤害之后,你意识到决策不应该只考虑非0即1的因素,应该把"程度"考虑进来:
\begin{itemize}
\item
$
x
_
0
$
:
距离/10
\item
$
x
_
1
$
:
票价/100
\item
$
x
_
0
$
:
10/距离
\item
$
x
_
1
$
:
150/票价
\item
$
x
_
2
$
:女朋友是否愿意一起?(这条不敢改)
\end{itemize}
\item
这时,
$
x
_
0
$
和
$
x
_
1
$
是连续变量,
$
x
_
2
$
是一个离散变量。
\item
<2-> 这时,
$
x
_
0
$
和
$
x
_
1
$
是连续变量,
$
x
_
2
$
是一个离散变量
\end{itemize}
\visible
<2->
{
\begin{tikzpicture}
\begin{scope}
\draw
[->,thick] (0,0) -- (2.5,0);
\draw
[->,thick] (0,0) -- (0, 1.5);
\draw
[-,very thick,ublue,domain=0.6:2,samples=100] plot (
\x
,
{
1/
\x
- 0.2
}
);
\node
[anchor=east] (ylabel) at (0, 3.2em)
{
\footnotesize
{$
x
_
0
$}}
;
\node
[anchor=north] (xlabel) at (5em, 0em)
{
\scriptsize
{
距离(km)
}}
;
\end{scope}
\begin{scope}
[xshift=9em]
\draw
[->,thick] (0,0) -- (2.5,0);
\draw
[->,thick] (0,0) -- (0, 1.5);
\draw
[-,very thick,ublue,domain=0.4:2,samples=100] plot (
\x
,
{
0.5/
\x
}
);
\node
[anchor=east] (ylabel) at (0, 3.2em)
{
\footnotesize
{$
x
_
1
$}}
;
\node
[anchor=north] (xlabel) at (5em, 0em)
{
\scriptsize
{
票价(元)
}}
;
\end{scope}
\begin{scope}
[xshift=18em]
\draw
[->,thick] (0,0) -- (2.5,0);
\draw
[->,thick] (0,0) -- (0, 1.5);
\node
[anchor=east] (ylabel) at (0, 3.2em)
{
\footnotesize
{$
x
_
2
$}}
;
\node
[anchor=south, fill=ublue, minimum width=1.5em, minimum height=0.1em, inner sep=0] (histogram1) at (1.5em, 0)
{}
;
\node
[anchor=south, fill=ublue, minimum width=1.5em, minimum height=3em, inner sep=0] (histogram2) at (4.0em, 0)
{}
;
\node
[anchor=north] (hlabel1) at (histogram1.south)
{
\tiny
{
女友不去
}}
;
\node
[anchor=north] (hlabel2) at (histogram2.south)
{
\tiny
{
女友去
}}
;
\end{scope}
\end{tikzpicture}
}
\begin{itemize}
\item
<3-> 女朋友很希望和你一起,但是剧场有20km远而且票价500元。于是有
\
$
x
_
0
=
10
/
20
=
0
.
5
$
,
$
x
_
1
=
150
/
500
=
0
.
3
$
,
$
x
_
2
=
1
$
。综合来看
$
\sum
_
i x
_
i
\cdot
w
_
i
\ge
\sigma
$
,还是
{
\color
{
red
}
去听音乐会
}
:)
\begin{displaymath}
\sum
_
i x
_
i
\cdot
w
_
i = 0.5
\cdot
0.5 + 0.3
\cdot
2 + 1
\cdot
0.5 = 1.35
\ge
\sigma
= 1
\end{displaymath}
\end{itemize}
\end{frame}
%%%------------------------------------------------------------------------------------------------------------
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论